Od wersji 2.0.0 musisz zawinąć swoje gdzie klauzula w where
właściwość:
Project.update(
{ title: 'a very different title now' },
{ where: { _id: 1 } }
)
.success(result =>
handleResult(result)
)
.error(err =>
handleError(err)
)
Aktualizacja 2016-03-09
Najnowsza wersja w rzeczywistości nie używa success
i error
już, ale zamiast tego używa then
-możliwe obietnice.
Tak więc górny kod będzie wyglądał następująco:
Project.update(
{ title: 'a very different title now' },
{ where: { _id: 1 } }
)
.then(result =>
handleResult(result)
)
.catch(err =>
handleError(err)
)
Korzystanie z async/await
try {
const result = await Project.update(
{ title: 'a very different title now' },
{ where: { _id: 1 } }
)
handleResult(result)
} catch (err) {
handleError(err)
}