如何通过 jquery ajax 调用将参数传递给通用处理程序
如何通过jquery ajax调用将参数传递给通用处理程序并且返回类型必须为json格式?
我用它来调用没有输入参数的方法。我该如何改变它?
$.ajax
({
type: "Get",
url: "../DataPoint.ashx",
data: "MethodName=GetPoint",
success: function (msg) {
n = msg;
}
});
How to pass parameters to generic handlers through jquery ajax call and the return type must in json format?
I'm using this to call a method with no input parameters. How do I change it?
$.ajax
({
type: "Get",
url: "../DataPoint.ashx",
data: "MethodName=GetPoint",
success: function (msg) {
n = msg;
}
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不太明白你的问题,但这是将参数推送到返回 json 字符串的服务器函数的一种方法......
I don't undestarnd very well your question but this is one way to push arguments to the server function that returns a json string...
您的意思是像下面的代码示例中那样(传递参数)
Do you mean like in the code sample below (passing parameters)
我永远无法让参数传递,所以我求助于将它们传递到标头中并在处理程序中解析它们。
泽德
I could never get the arguments to pass so I resorted to passing them in the headers and parse them out in the handler.
Zed