0
私は、次のコードを持っている:変数(当時)(保存本棚に変わりません)
User.forge(req.body)
.save()
.then((model) => {
model.id = undefined;
console.log(JSON.stringify({data: model}));
res.json({data: model})
})
コンソールにこれを出力します。
{"data":{"name":"Test User","username":"test_usr","role_id":1,"id":54}}
それが値を変更していないなぜmodel.idのPromise.then
でも?