我怎么不忽视" id"插入/更新请求中的属性?

时间:2017-03-14 19:52:24

标签: node.js loopbackjs

我想用" updateAll"更新特定的id属性方法。可能吗?

Model.updateAll({userId:10}, {userId:5, name:'test'}, function (...

"用户ID"是model.json中的id属性

sql语法

update table set name='test' where userId=10

为什么不能像这样更新userId?

update table set name='test' and userId=5 where userId=10

1 个答案:

答案 0 :(得分:0)

由于this line,您可以以环回方式执行此操作。

Loopback从插入/更新文件中排除DependencyResolver

但你可以这样做:

id

<强>更新

即使环回也不允许通过app.datasources.mysql.connector.execute('update table set name=? , userId=? where userId=?', ['test', 5, 10], function(err, result){... 方法更新模型ID。 this line