How Can I Update Current Object In Parse.com With Javascript?
I want to update object i already have in parse.com with javascript; what i did is i retirevied the object first with query but i dont know how to update it. here is the code i use
Solution 1:
The difference between the question and your answer may not be obvious at first- So for everyone who has happened here- Use query.first instead of query.find.
query.find() //don't use this if you are going to try and update an object
returns an array of objects, an array which has no method "set" or "save".
query.first() //use this instead
returns a single backbone style object which has those methods available.
Solution 2:
I found the solution, incase someone needs it later
here it is:
var GameScore = Parse.Object.extend("Driver");
var query = new Parse.Query(GameScore);
query.equalTo("DriverID", "9");
query.first({
success: function(object) {
object.set("DName", "aaaa");
object.save();
},
error: function(error) {
alert("Error: " + error.code + " " + error.message);
}
});
Solution 3:
If someone got msg "{"code":101,"error":"object not found for update"}", check the class permission and ACL of Object to enrure it's allowed to read and write
Solution 4:
Do something like this:
var GameScore = Parse.Object.extend("Driver");
var query = new Parse.Query(GameScore);
query.equalTo("DriverID", "9");
query.find({
success: function(results) {
alert("Successfully retrieved " + results.length + "DName");
// - use this-----------------
results.forEach((result) => {
result.set("DName", "aaaa");
});
Parse.Object.saveAll(results);
// --------------------------------
},
error: function(error) {
alert("Error: " + error.code + " " + error.message);
}
});
Solution 5:
You can do it like this:
var results= await query.find();
for (var i = 0; i < results.length; i++) {
results[i].set("DName", "aaaa");
results[i].save();
}
Post a Comment for "How Can I Update Current Object In Parse.com With Javascript?"