orm2 中文文档 7. 创建和更新记录

来源:互联网 发布:怎么看淘宝信誉值 编辑:程序博客网 时间:2024/05/29 17:17

译者:飞龙

来源:Creating and Updating Items

创建

var newRecord = {};newRecord.id = 1;newRecord.name = "John"Person.create(newRecord, function(err, results) { ...});

保存

Person.find({ surname: "Doe" }, function (err, people) {    // SQL: "SELECT * FROM person WHERE surname = 'Doe'"    console.log("People found: %d", people.length);    console.log("First person: %s, age %d", people[0].fullName(), people[0].age);    people[0].age = 16;    people[0].save(function (err) {        // err.msg = "under-age";    });});
0 0
原创粉丝点击