Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
オブジェクトが作成されたばかりなのか、既存のオブジェクトが新しい値で更新されているのかを確認 (および適切なアクションを実行) する必要があります。これを正確に確認する方法はありますか?
はいあります。新しいオブジェクトにはまだ ID がないため、オブジェクトに ID があるかどうかを確認できます。
Parse.Cloud.beforeSave("MyClass", function (request, response) { var object = request.object; if (!object.id) { // this is a new object } });