$.ajax({
type: "POST",
url: "SearchService.asmx/GetSearchResults",
contentType: "application/json",
dataType: "json",
success: function (dataResult) {
CreateData(dataResult.d);
},
error: function (xhr, msg, error) {
alert("Failed: " + msg.status + ": " + msg.statusText + error + " " + xhr.responseText);
}
});
当我将它包含在我的网站上时,我得到一个解析器错误。但是这段代码在一个测试项目上运行良好,我得到了无效的 json 解析器错误。