使用DOJO 1.8.1的Ajax POST

时间:2012-11-20 10:30:25

标签: ajax dojo

我尝试使用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中。

enter image description here

注意:我已经要求"dojo/request"并记录on dojo ready它正常工作。没有任何错误。

为什么它会在Tab Net中显示,我该如何解决?我不知道我的代码有什么问题。

0 个答案:

没有答案