谢谢回复。我使用了saveAll方法,SDK的promise成功,并且返回了更新后的List,但是查看数据库中相应字段并没有更改。
const membersJSON = this.members
var membersLC = []
// 反序列化JSON到Leancloud AV.object
membersJSON.forEach(e => {
membersLC.push(db.parseJSON(e))
})
AV.Object.saveAll(membersLC)
.then(resp => {
console.log('success')
console.log(resp)
})
.catch(e => console.log(e))
.finally(this.loadingSubmit = false)
运行代码后,console显示success 并且返回了更新以后的[], 但是查询数据库是没有发生变化的。