当我通过 tns run ios 运行它时,我的应用程序运行正常,但是当我尝试使用 tns debug ios 进行调试时,它运行不正常。
当我向后端发出HTTP请求时,后端不会收到该请求,并且会发生错误。
“this.dispatchMessage不是函数。(在'this.dispatchMessage'中,'this.dispatchMessage'未定义)”
这是我正在使用的代码:
http.request({
url: config.baseUrl,
method: "POST",
headers: { "Content-Type": "application/x-www-form-urlencoded" },
content: data
}).then(function (response) {
// Success
}, function (e) {
// error occur
});