我做了一个 jquery ajax 调用来调用 static page method
。它在没有任何参数的情况下工作正常。但是,如果我输入参数,则它不会调用该页面方法。我有以下代码。
JAVASCRIPT
$.ajax({
type: 'POST',
url: 'ItemMaster.aspx/UploadFile',
contentType: 'application/json; charset=utf-8',
data: {'path':'mydata'},
dataType: 'json',
success: function (msg) {
alert(msg.d);
}
});
页法
[WebMethod]
public static string UploadFile(string path)
{
return "Success";
}
是否发生了任何datatype
不匹配?我热身谷歌一段时间没有任何成功。请帮忙..