var json = encodeURI(JSON.stringify(data), "UTF-8");
$.ajax({
contentType: "application/json",
//url: "GetPaperHandler.ashx",
url: GetPaperUrl,
data: json,
cache: false,
dataType: "json",
success: function (result) {alert(JSON.stringify(result));return false;
在php端直接get能收到值{"{\"test_id\":\"88\"}":"","_":"1501916510743"},但是urldecode后为null,json_code后也为null,应该怎么办,感谢回答。
最佳答案
