-1
APIリクエストをAPIに送信しようとしていますが、$ http.postが動作していないか、未定義エラーの 'data'プロパティを読み取れません。
このやり方や回避策の提案はありますか?どのように問題を適切にデバッグするか?
コード:
var data = {
from: "[email protected]",
to: "[email protected]",
content_type: "text/plain",
body: "Temp Message",
date: "2017-09-12T03:48:29.285Z",
};
var config = {
headers : {
'Content-Type' : 'application/x-www-form-urlencoded; charset=utf-8',
'Authorization': 'Basic ' + "u/xx/yyy:zzz",
}
}
return $http.post('https://xxx/send', data, config)
.success(function (data, status, header, config) {
console.log("SUCCESS");
})
.error(function (data, status, header, config) {
console.log("FAILED");
});
角/イオンエラー
0 330020 error TypeError: Cannot read property 'data' of undefined
at http://xxx.xxx.x.xxx:8101/lib/ionic/js/ionic.bundle.js:24536:24
at processQueue (http://xxx.xxx.x.xxx:8101/lib/ionic/js/ionic.bundle.js:29132:28)
at http://xxx.xxx.x.xxx:8101/lib/ionic/js/ionic.bundle.js:29148:27
at Scope.$eval (http://xxx.xxx.x.xxx:8101/lib/ionic/js/ionic.bundle.js:30400:28)
at Scope.$digest (http://xxx.xxx.x.xxx:8101/lib/ionic/js/ionic.bundle.js:30216:31)
at Scope.$apply (http://xxx.xxx.x.xxx:8101/lib/ionic/js/ionic.bundle.js:30508:24)
at done (http://xxx.xxx.x.xxx:8101/lib/ionic/js/ionic.bundle.js:24829:47)
at completeRequest (http://xxx.xxx.x.xxx:8101/lib/ionic/js/ionic.bundle.js:25027:7)
at XMLHttpRequest.requestError (http://xxx.xxx.x.xxx:8101/lib/ionic/js/ionic.bundle.js:24978:9)
あなたが未定義である任意のオブジェクトから 'data'プロパティを取得しようとしているが、そのコードはここにあなたの質問には設けられていないようです:コードは次のようになります。 – Gaurav