MonacaとNiftyCloudMobileBackendを使用して、データストア内installationクラスの項目(objectId)を取得したり、installationクラスに新しい項目を追加(更新)したいと考えてますが、下記エラーメッセージが表示され、項目の取得や追加(更新)が出来ません。
該当ソース
javascript
1 let installationid = localStorageToJson('InstallationId'); 2 confirm(installationid); 3 4 var ncmb = new NCMB(MOBILE_BACKEND_APPLICATION_KEY, MOBILE_BACKEND_CLIENT_KEY); 5 var Installation = ncmb.DataStore("installations"); 6 Installation.fetchById(installationid) 7 .then(function(installation){ 8 alert("取得できたよ。"); 9 }) 10 .catch(function(err){ 11 /* installation取得失敗時の処理 */ 12 alert("installation取得に失敗しました" + err); 13 }); 14 15 var Installation = ncmb.DataStore('installations'); 16 var installation = new Installation(); 17 18 Installation.equalTo('objectId',installationid) 19 .fetchAll() 20 .then(function(installation){ 21 alert("更新開始。"); 22 installation.set("region", "Asia"); 23 return installation.update(); 24 }) 25 .then(function(installation){ 26 alert("更新成功"); 27 }) 28 .catch(function(err){ 29 alert('更新失敗。'+err); 30 }); 31
エラーメッセージ
installation取得に失敗しましたError:cannot GET https://mbass.api.nifcloud.com:443/2013-09-01/classes/installations/g2ufmrRg28wku0zA(404) 最後のobjectidはわざと変更してます。
更新失敗。TypeError:installation.set is not a function
どこか間違えている部分があればご指摘いただけますでしょうか。
ご教授いただけると助かります。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/02/03 08:21