我尝试使用DOJO(v. 1.8.1)
使用ajax发布数据request.post("http://someweb.com/service", {
headers: {
"Content-Type": "application/x-www-form-urlencoded"
},
handleAs: "text",
sync: false
}).then(function (text) {
console.log("The server returned: ", text);
});
在POST数据时,它不会在FireBug的Tab控制台中显示日志消息,而是显示在Tab Net中。
注意:我已经要求"dojo/request"
并记录on dojo ready
它正常工作。没有任何错误。
为什么它会在Tab Net中显示,我该如何解决?我不知道我的代码有什么问题。