自从星期五开始使用Loopback 2.42.0以来,使用Model.updateAll()遇到了一些问题
我不断收到奇怪的错误,仅记录625961373212139(例如:console.log(error)
仅显示该数字)
这是我的测试代码:
Order.testUpdateAll = function (id, someValue, next)
{
Order.updateAll(
{
id: id
},
{
someAttribute: someValue
}).then(function (res)
{
console.log('res');
console.log(res);
next(null, res);
}).catch(function (err)
{
console.log('err');
console.log(err);
next(err);
});
};
有什么想法吗?谢谢!