创建译者:飞龙
来源: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"; }); });
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/17499.html
摘要:译者飞龙来源查找匹配标准的记录,可以链式查询见下文你也可以限制结果的个数,这条语句限制结果为个是的别名。通过主键来查找记录。获取所匹配记录的数量。测试匹配你的条件的记录是否存在。为或者的使用来查找取决于引擎会自动将数组视为基于的查询。 译者:飞龙 来源:Finding items find 查找匹配标准的记录,可以链式查询(见下文): Person.find({status:act...
摘要:译者飞龙来源是多对多的关系包括连接表。每个医生可以拥有许多不同的病人。如果为,关联将会自动被获取。默认为由于历史原因。如果为,表中外键的列会形成一个组合键。允许重命名关联访问器。 译者:飞龙 来源:hasMany hasMany 是多对多的关系(包括连接表)。 例如:Patient.hasMany(doctors, Doctor, { why: String }, { revers...
阅读 873·2021-10-25 09:44
阅读 1237·2021-09-23 11:56
阅读 1082·2021-09-10 10:50
阅读 3015·2019-08-30 15:53
阅读 2045·2019-08-30 13:17
阅读 600·2019-08-29 18:43
阅读 2412·2019-08-29 12:57
阅读 830·2019-08-26 12:20