$.ajax({
cache: false,
type: 'POST',
url: 'renderDisplay.asmx/displayElements',
dataType: 'json',
data: object,
success: function () {
alert ("success"); },
error: function (response) {
alert("error: " + response.responseText);}
});
JavaScriptSerializer serializer = new JavaScriptSerializer();
Dictionary<string, string> temp = new Dictionary<string, string>();
temp.Add("boston", "mass");
string json = serializer.Serialize((object)temp);
return json;
注意:开头括号“&lt;”已被放在括号中,因为否则将2行作为实际代码
error: (<)?xml version="1.0" encoding="utf-8"?>
(<)string xmlns="http://tempuri.org/">{"boston":"mass"}</string>
答案 0 :(得分:0)
在我看来,您的Web服务实际上正在返回用XML包装的JSON。
此主题可能有所帮助:
ASP.NET JSON web service always return the JSON response wrapped in XML