如何使用POST方法发送JSON数据XDR(How to send JSON data in XDR

2019-07-29 06:31发布

我想用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);
        }
    });
}

Answer 1:

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



文章来源: How to send JSON data in XDR using the POST method