Monacaで、Cordova9からCordova10にアップデートしたところ、iOSで正常動作しなくなり困っています。
ログを確認してみたところ、
サーバのAPIは正常レスポンスしていました。
アプリ側でJSONのデータが受け取れていないようででした。
ログ
ソースのconsole.log('rejection')で下記の内容が出力。
dataがnullになっていました。
{"data":null,"status":0,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"https://~","timeout":30000,"headers":{"Accept":"application/json, text/plain, */*"},"cached":false},"statusText":""}
該当のソースコード
angularJSで下記のようにAPIを呼び出ししております。 $http({ method: 'GET', url: url, timeout: CONST.TIME_OUT.GET, }).then( function(response){console.log(response);}, //responseは空 function(rejection){ console.log('rejection'); console.log(rejection); }); // 記述のログはこちらの分
解決策をご教授頂ける方いらっしゃいましたら幸いです。
回答1件
あなたの回答
tips
プレビュー