8

我想使用 POST 方法在 XDR 中发送 JSON 数据。我能够发送 JSON 数据,但问题是.(DOT)符号被转换为_(下划线)。这是代码:

if ($.browser.msie && window.XDomainRequest) {
    var xdr = new XDomainRequest(); 
    xdr.open("POST",Path);
    xdr.send(JSON.stringify(data) + '&ie=1');
    xdr.onerror = function() {
        alert('in error');
    };
    xdr.onload = function() {
        alert(xdr.responseText);
    }
} else {
    jQuery.ajax({
        type: "POST",
        url: Path,
        data: JSON.stringify(data),
        dataType: 'json',
        contentType: 'application/json',
        success: function(msg) {
                alert(msg);
        }
    });
}
4

1 回答 1

0

可能是您的服务器端脚本错误..这段代码似乎是正确的....

于 2013-09-02T18:49:09.613 回答