dojo.xhrPost({
url: "Default.aspx/TestMethod",
handleAs: "json",
contentType: "application/json",
postData: dojo.toJson({ }),
load: function (result) {
debugger;
},
error: function (err) {
debugger;
}
});
WebMethod
那是我用来向Default.aspx
. 该方法称为TestMethod
.
我得到的错误是:
Unable to load Default.aspx/TestMethod status: 500
如果您需要任何其他信息,请告诉我。
*注意:我可以从服务器端调用该方法,它会按预期返回结果。