我有以下代码可以正常工作
function getFooObj() {
$.ajax({
type: "POST",
url: "Dummy.aspx/GetFooObj",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (result) {
alert('good');
}
});
}
[WebMethod]
public static FooObj GetFooObj ()
{
// some code that returns FooObj
}
我的问题是,如果我希望我的 WebMethod 不是静态的,我该如何从 JS 调用它?
[WebMethod]
public FooObj GetFooObj ()
{
// some code that returns FooObj
}