嗨,我从JavaScript调用一个简单的页面的方法,这是我的标记代码
function OnCallSumComplete(result, userContext, methodName) {
alert(result);
}
function OnCallSumError(error, userContext, methodName) {
if (error !== null) {
alert(error.get_message());
}
}
function test(){
var contextArray = "";
PageMethods.TestMethod("test parameter", OnCallSumComplete, OnCallSumError, contextArray);
}
<asp:ScriptManager ID="ScriptManager1" EnablePageMethods="true" runat="server" />
在CS
[System.Web.Services.WebMethod]
public static string TestMethod(string para)
{
return "Yes this is working";
}
警报显示结果和它说“空”。 我检查萤火虫,我没有看到错误的控制台。
如果我改变TestMethod的到
[System.Web.Services.WebMethod]
public static string TestMethod()
{
return "Yes this is working";
}
而PageMethod的到
PageMethods.TestMethod( function (response) { alert(response); } );
它显示了正确答案为“是的,这是工作。” 但是,我需要的参数传递给函数。 我错过了什么?
感谢帮助。