我正在使用 ASP.net 3.5。使用 JQuery 调用 Web 方法会返回有效的 JSON 数据。但是,当我使用 datatables.net JQuery 插件调用相同的 web 方法来填充 html 表时,我会返回页面的整个 html。
**WebMethod:**
<WebMethod()> _
Public Shared Function GetData() As String
Dim a As String = "{""aaData"": [['Trident','Internet Explorer 4.0']]}"
Return a
End Function
**Successful JQuery call:**
$("#Result").click(function() {
$.ajax({
type: "POST",
url: "Default2.aspx/GetData",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg) {
// Replace the div's content with the page method's return.
$("#Result").text(msg.d);
}
});
});
});
不成功的 JQuery 调用:
$(document).ready(function() {
$('#example').dataTable({
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "Default2.aspx/GetDate",
"fnServerData": function(sSource, aoData, fnCallback) {
$.ajax({
"dataType": 'json',
"url": sSource,
"data": aoData,
"success": fnCallback
});
}
});
});
关于为什么第二次调用返回 html 的任何想法?我尝试在第二个 ajax 调用中添加 contentType: "application/json; charset=utf-8"。我得到一个错误。