此代码从后面代码中的公共静态字符串中获取返回值,并显示警报中返回的内容。
<script type="text/javascript">
function GetFromServer()
{
PageMethods.GetHello(OnGetHelloComplete);
}
function OnGetHelloComplete(result, userContext, methodName)
{
alert("Result: " + result + "\n" +
"Context: " + userContext + "\n" +
"Method name: " + methodName);
}
</script>
后面代码中的 web 方法是一个公共的静态字符串。但它返回的是什么?
为什么我写不出来...
var myString = PageMethods.GetHello()
“result”、“userContext”和“methodName”是从哪里出现的?
编辑:请忽略,我查看了源代码并看到了那里输出的内容。