这是我的代码:
服务器 :
[WebMethod]
public static string GetAll()
{
NotificationForSupport NFS = new NotificationForSupport();
string s = NFS.GetData();
return s;
}
客户端 :
function getData() {
var $msg = $('#msg');
$.ajax({
type: 'POST',
url: 'Default.aspx/GetAll',
data: '{ }',
contentType: 'application/json; charset=utf-8',
dataType: 'json',
success: function (data) {
$msg.html(data.d);
},
error: function () {
alert("error");
}
});
}
如您所见,我的函数返回一个字符串,但现在我希望它返回一个 dataTable 而不是该字符串阿贾克斯