我的 jQuery 中有一个字符串 myArray[] 数组,该值是动态生成的。我的代码后面还有一个方法,它有 string[] myArray。
我在我的 jQuery 中使用以下代码
$.ajax({
type: "POST",
url: "myurl/MyMethod",
data: "{'strArray' :" + myArray + ", 'id':" + x + "}",
dataType: "json",
success: function(response){
// DO SOME STUFF WITH THE RESPONSE...
}
});
我的代码中有以下内容
[WebMethod]
public static bool MyMethod(string[] strArray, int id)
{
// DO SOME STUFF WITH THE PARAMETERS
}
现在的问题是 ajax 没有调用 MyMethod。任何点...
提前致谢...