Kể từ phiên bản 2.0.0, bạn cần kết thúc ở đâu mệnh đề trong where
tài sản:
Project.update(
{ title: 'a very different title now' },
{ where: { _id: 1 } }
)
.success(result =>
handleResult(result)
)
.error(err =>
handleError(err)
)
Cập nhật 2016-03-09
Phiên bản mới nhất thực sự không sử dụng success
và error
nữa nhưng thay vào đó sử dụng then
-các lời hứa khả thi.
Vì vậy, mã trên sẽ trông như sau:
Project.update(
{ title: 'a very different title now' },
{ where: { _id: 1 } }
)
.then(result =>
handleResult(result)
)
.catch(err =>
handleError(err)
)
Sử dụng async / await
try {
const result = await Project.update(
{ title: 'a very different title now' },
{ where: { _id: 1 } }
)
handleResult(result)
} catch (err) {
handleError(err)
}