JavaScript CRUD API Databound

码农软件 · 软件分类 · REST/RESTful项目 · 2019-03-11 06:11:30

软件介绍

Databound 提供了 JavaScript 简单的 CRUD API 到 Rails 的后端应用。

示例代码:

User = new Databound('/users')

User.where({ name: 'John' }).then(function(users) {
    alert('Users called John');
});

User.find(15).then(function(user) {
    print('User no. 15: ' + user.name);
});

User.create({ name: 'Peter' }).then(function(user) {
    print('I am ' + user.name + ' from database');
});

本文地址:https://www.codercto.com/soft/d/1082.html

The Dream Machine

The Dream Machine

M. Mitchell Waldrop / Penguin Books / 2002-8 / USD 16.00

While most people may not be familiar with the name J. C. R. Licklider, he was the guiding spirit behind the greatest revolution of the modern era. At a time when most computers were big, ponderous ma......一起来看看 《The Dream Machine》 这本书的介绍吧!

URL 编码/解码
URL 编码/解码

URL 编码/解码

SHA 加密
SHA 加密

SHA 加密工具

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具