1

我有这个 jquery 代码:

var sendInfo = {
    auth: {
        username: "janusz",
        password: "password"
    },
    func: "getCategories"
};

$.ajax({
    url: 'http://domainname/fcgi-bin/wgpa.fcgi',
    type: "POST",
    data: sendInfo,
    dataType: "json",
    contentType: "text/json; charset=utf-8",
    success: function (data) {
        //....
    }
});

它适用于 Chrome、Firefox、IE11,但在 IE8 中失败。什么都不说。并且请求也不会出现在服务器端。

4

1 回答 1

1

我希望你已经解决了这个问题。如果其他人遇到这个问题,我会提供答案。

您可以使用 EasyXDM ( http://easyxdm.net ) 进行跨域帖子。设置起来可能有点棘手,但很有魅力。

于 2014-05-26T01:11:07.320 回答