我想要console.log
jqueryajax
成功方法的值。
$.ajax({
type: "post",
url: '/CalculateTime.asmx/GetServerTime',
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
error: function (e) {},
success: function (data, textStatus, jqXHR) {
console.log("success: " + data);
}
});
但它只显示[object object]
在浏览器控制台中,不显示服务器返回的实际数据。
[WebMethod]
public DateTime GetServerTime()
{
return DateTime.Now;
}
我试过了
success: function(e) {
console.log("success: "+e );
}
但没用..这里有什么问题