gpt4 book ai didi

c# - 无法从 Javascript 访问 Web 方法

转载 作者:行者123 更新时间:2023-11-29 20:15:43 24 4
gpt4 key购买 nike

我正在创建一个简单的 Web 方法来从 Java 脚本访问..但是我不能

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script src="Scripts/jquery-1.4.1.js" type="text/javascript"></script>
<script type="text/javascript">


$(document).ready(
function test() {
var x = PageMethods.MyMethod();
alert(x.toString());
})
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:ScriptManager ID="ScriptManager1" runat="server" EnablePageMethods="true" EnablePartialRendering="true">
</asp:ScriptManager>
</div>
</form>
</body>
</html>

后面的代码是这样的

 [WebMethod]
public static string MyMethod()
{
return "Hello";
}

变量 x 为空。我无法弄清楚我缺少的是什么?有帮助吗?提前致谢

最佳答案

您需要定义一个回调函数,该函数在收到来自网络方法的响应时调用:

    $(document).ready(
function test() {
PageMethods.MyMethod(myMethodCallBackSuccess, myMethodCallBackFailed);
})

function myMethodCallBackSuccess(response) {
alert(response);
}

function myMethodCallBackFailed(error) {
alert(error.get_message());
}

您也可以将参数传递给该方法,但是这些参数必须始终出现在成功和失败回调之前。

注意:您不需要包括失败的回调,但如果需要可以使用。

关于c# - 无法从 Javascript 访问 Web 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6931999/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com