为什么下面的代码发送的数据是 City=Moscow&Age=25 而不是 JSON 格式?var arr = {City:'Moscow', Age:25};$.ajax( { url: \'Ajax.ashx\', type: \'POST\', data: arr,
为什么下面的代码发送的数据不是 City=Moscow&Age=25
JSON 格式?
var arr = {City:'Moscow', Age:25};
$.ajax(
{
url: "Ajax.ashx",
type: "POST",
data: arr,
dataType: 'json',
async: false,
success: function(msg) {
alert(msg);
}
}
);