开发者

Why is my json encoded?

I have the following code which I post a bunch of JSON data to an ASHX file where I will process this data. Somehow the JSO开发者_Go百科N is encoded and I have no clue what encoded it.

 $.ajax({        
    url: '/save_objects_channels.ashx',
    data: jsonParams,
    contentType: 'application/json',
    dataType: 'json',                                
    success: function(data) {                                  

    },
    error: function (xhr, ajaxOptions, thrownError){

    },
    complete: function() {

    }
});

Here is my sample json that I posted (I generate this as string):

var jsonParams = '[ { objectID: 333, channelID: 3, supplierId: 2, checked: true },{ objectID: 444, channelID: 4, supplierId: 5, checked: true } ]';

Why is my json encoded?


jQuery encoded it. You chose to send it as a GET request (which is the default for .ajax()), which transfers all data in the URL as part of the query string. As Clement Herreman also points out, the query string must be encoded.

You might want to switch to type: "POST" in your .ajax() parameters.

GET requests have a length limit that can bite you when the JSON string gets longer. POST requests have virtually no size limit.

Plus, you will cause a data leak: Query strings are written to the web server logs, possibly sensitive data could end up there when you are not careful. POST requests are logged, too. But their payload will not be logged, as it is not part of the URL.


Because URL must be encoded, according the RFC 3986

Hint on how to encode url using Javascript : Encode URL in JavaScript?

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜