var Test = ncmb.DataStore("Test");
var test = new Test({"aaa": "1111", "bbb":null});
test.save()
.then((data) => {
// success
})
.catch((err) => {
//error
});
Save User:
var user = new ncmb.User({
"userName": "user", "password": "pass", "test": null
});
user.signUpByAccount()
.then((data) => {
// success
})
.catch((err) => {
//error
});
概要(Summary)
動作確認手順(Step for Confirmation)
Save User: