Closed ncmbadmin closed 8 years ago
SDKの改善にご協力いただきありがとうございます。 (Thank you for your support our SDK.)
SDKの不具合を報告する場合は、以下の項目を確認してください。 (If you want to report a bug of the SDK, please confirm the following terms.)
ncmb.User.requestSignUpEmail("abc@gmail.com") .then(function(data){ // 送信後処理 console.log("Updated done") }) .catch(function(err){ // エラー処理 console.log(JSON.stringify(err)); });
ユーザ更新
//Userのインスタンスを作成 var user = new ncmb.User(); // メールアドレスとパスワードでログイン ncmb.User.loginWithMailAddress("abc@gmail.com", "test") .then(function(user){ console.log("Login successfull"); // ログイン後処理 var currentUser = ncmb.User.getCurrentUser(); user.set("new", "newvalue"); user.update() .then(function(obj){ // 保存後の処理 console.log("Updated done") }) .catch(function(err){ // エラー処理 console.log("Update error: " +JSON.stringify(err)); }); }) .catch(function(err){ // エラー処理 });
v2.1.2で対応済みなのでクローズします。
SDKの改善にご協力いただきありがとうございます。
(Thank you for your support our SDK.)
SDKの不具合を報告する場合は、以下の項目を確認してください。
(If you want to report a bug of the SDK, please confirm the following terms.)
不具合の概要(Description of bug)
ユーザ更新