Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@considine
Created August 24, 2018 22:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save considine/d7285ea9d6cf8fa87364cf8fdb933958 to your computer and use it in GitHub Desktop.
Save considine/d7285ea9d6cf8fa87364cf8fdb933958 to your computer and use it in GitHub Desktop.
// Parse initialization above
new Parse.Object("Test", {"text" : "testing"}).save()
.then(function (obj) {
console.log("Success", obj);
})
.catch(function (e) {
alert("Error saving test object!" + e.message);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment