gpt4 book ai didi

node.js - Sequelize js上更新和删除的问题

转载 作者:行者123 更新时间:2023-12-03 22:29:39 24 4
gpt4 key购买 nike

尝试使用 Sequelize JS 删除或更新行时遇到了一些麻烦。
当我尝试做这样的事情时(更新时):

Embed.find(parseInt(req.body.id, 10)).success(function(embed) {
embed.updateAttributes({
NOME : req.body.name,
EMBED : req.body.embed
}).success(function() {
res.json({"success" : true});
}).error(function() {
res.json({"success" : false});
});
});

或(删除时):
Embed.find(parseInt(req.body.id, 10)).success(function(embed){
embed.destroy().success(function(e) {
console.log(e);
if(e && e.deletedAt) {
res.json({"success": true});
}
}).error(function(e){
console.log(e);
});
}).error(function(){
res.json({"success": false});
});

它显示一个错误:
return (typeof obj == 'object') && !obj.hasOwnProperty('length')

类型错误:无法调用 null 的方法“hasOwnProperty”
在 Object.isHash

有谁知道发生了什么?

最佳答案

我猜你用错了。如果您使用 find() 方法,则必须在其中传递一个对象。像下面这样;

Embed
.findAll({ "id": parseInt(req.body.id) })
.then(function(embed) { ... });

这段代码从promise 返回一个数组。所以你不能直接将它用作 embed.updateAttributes(...) 。你必须这样使用; embed[0].updateAttributes(...)

或者你可以这样使用;
Embed
.findOne({ "id": parseInt(req.body.id) })
.then(function(embed) { embed.updateAttributes(...); });

因为 findOne() 只返回一个你找到的对象。

而且..我现在看到了,这个帖子很老了。不推荐使用 .find() 方法。所以我用 find() 替换了 findAll() 方法。我认为这些都在做同样的过程。

关于node.js - Sequelize js上更新和删除的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9722348/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com