我在我的数据库中已存在的对象上调用save()
并定义了主键。
Sequelize告诉我id must be unique
,而不是更新对象。为什么呢?
我不想说update( {every,single,field,except,the,id})
。那太乏味了。
这是我目前的代码:
const instance = db.dbo__peach_payments_transactions.build(existingPayment);
return db.transaction( async (transaction) => {
return instance.save();
});
我现在也尝试过:
return instance.update({fields: [
'updated_at',
'orders_id',
'payment_states_id',
'response_data',
'token',
'result',
'reason_code',
'reason_message',
'price',
'processed_at']});
});
但这会生成相反的 sql,而不是保存这些字段,它排除了它们给我的错误:updated_at cannot be null
(即使它不是null)使用这个sql:
"INSERT INTO "dbo"."peach_payments_transactions" ("peach_payments_transactions_id","created_at") VALUES ('7fb301e9-bb72-4a70-9ee5-0db1376e83e8','2016-07-11 13:48:20.137 +00:00') RETURNING *;"
答案 0 :(得分:3)
您可以尝试将instance.isNewRecord
设置为false
,然后再将其发送到服务器吗?
也许sequelize正在考虑将其作为新记录,因此它会尝试插入而不是更新