NCMBデータストア 更新方法について
NCMB(nifty cloud mobile backend)で
オブジェクト更新方法が分からず困っております。
言語はJavaScriptです。(Monacaで開発しています)
取得・保存は問題なく出来ているのですが、更新が動作しません。
どこか誤っている箇所ございますでしょうか。ご教授の程よろしくお願い致します。
//tblhoge name = "test" のオブジェクトを"test2"に更新
var tblHoge = ncmb.DataStore("tblhoge");
var hoge = new tblHoge();
hoge.equalTo("name","test")
.fetch()
.then(function(results) {
results.set("name","test2");
return results.update();
});