Javascript/jquery Code Block Is Not Updating Parse.com Class Object Correctly
I would have expected the following parse.com/javascript code block to save the selected 'badeselected' variable to the parse class 'myBadges' and automatically create a relationsh
Solution 1:
You are declaring contact twice. First as an extension called myBadges, and then as current user (discarding the first). Check the current user object in the data browser. You should find the badges there.
UPDATE
Here is an example from the javascript guide:
var GameScore = Parse.Object.extend("GameScore");
var gameScore = new GameScore();
gameScore.set("score", 1337);
gameScore.set("playerName", "Sean Plott");
gameScore.set("cheatMode", false);
gameScore.save(null, {
success: function(gameScore) {
// Execute any logic that should take place after the object is saved.
alert('New object created with objectId: ' + gameScore.id);
},
error: function(gameScore, error) {
// Execute any logic that should take place if the save fails.// error is a Parse.Error with an error code and description.
alert('Failed to create new object, with error code: ' + error.description);
}
});
You should be able to use this in your jquery code. See how they first declare GameScore as an extension, and then gameScore as new GameScore(); And THEN they set the values on the object.
More info: https://parse.com/docs/js_guide
Post a Comment for "Javascript/jquery Code Block Is Not Updating Parse.com Class Object Correctly"