在模型上调用.create()
时,我收到以下错误。
型号:
attributes: {
user : {
type: 'integer'
},
number : {
type: 'string'
}
}
呼叫:
sails.models.phone.create({
user: 2,
number: '5555555555',
updated_at: Sun Nov 27 2016 16:59:45 GMT-0800 (PST)
});
错误:
Unknown rule: default
at Object.matchRule (/Developer/repos/bond/api/node_modules/waterline/node_modules/anchor/lib/match/matchRule.js:38:11)
at Anchor.to (/Developer/repos/bond/api/node_modules/waterline/node_modules/anchor/index.js:106:48)
at afterwards (/Developer/repos/bond/api/node_modules/waterline/lib/waterline/core/validations.js:229:41)
at /Developer/repos/bond/api/node_modules/async/lib/async.js:52:16
at Object.async.forEachOf.async.eachOf (/Developer/repos/bond/api/node_modules/async/lib/async.js:236:30)
at Object.async.forEach.async.each (/Developer/repos/bond/api/node_modules/async/lib/async.js:209:22)
at _eachValidation (/Developer/repos/bond/api/node_modules/waterline/lib/waterline/core/validations.js:189:11)
at /Developer/repos/bond/api/node_modules/async/lib/async.js:181:20
at Object.async.forEachOf.async.eachOf (/Developer/repos/bond/api/node_modules/async/lib/async.js:233:13)
at Object.async.forEach.async.each (/Developer/repos/bond/api/node_modules/async/lib/async.js:209:22)
at Validator.validate (/Developer/repos/bond/api/node_modules/waterline/lib/waterline/core/validations.js:144:9)
at /Developer/repos/bond/api/node_modules/waterline/lib/waterline/query/validate.js:42:25
at /Developer/repos/bond/api/node_modules/async/lib/async.js:718:13
at Immediate.iterate [as _onImmediate] (/Developer/repos/bond/api/node_modules/async/lib/async.js:262:13)
at processImmediate [as _immediateCallback] (timers.js:383:17)
如何解决此问题?
我已查看similar errors,但我的模型都没有default
属性,包括上面显示的phone
模型。为什么会发生这种情况,我该如何解决?
解决方案
事实证明,.update()
的水线调用会改变输入信息。我编写了一个创建或更新水线模型的功能,当他们修复auto updated_at issue时,他们必须更改传入信息。
我之前的代码无效:
createOrUpdate: function(model, primary, data){
return model.update(primary, data)
.then(function updateCB(updated){
if (updated.length == 0){
return model.create(data) //data here had an added updated_at field
.then(function(created){
return created;
});
}
if (updated.length > 0){
updated = updated[0];
}
return updated;
});
}
我的新代码可行:
createOrUpdate: function(model, primary, data){
const data1 = JSON.parse(JSON.stringify(data)); // deep copy
const data2 = JSON.parse(JSON.stringify(data)); // deep copy
return model.update(primary, data1)
.then(function updateCB(updated){
if (updated.length == 0){
return model.create(data2)
.then(function(created){
return created;
});
}
if (updated.length > 0){
updated = updated[0];
}
return updated;
});
}
答案 0 :(得分:2)
您无法通过以下方式调用更新:
updated_at: Sun Nov 27 2016 16:59:45 GMT-0800 (PST)
Updated_at是自动填充字段。将其从请求中删除(在调用时调用),它将起作用。