JQuery Ajax WebMethod 返回一个对象
我的 C# 中有一个通过 Jquery ajax 方法调用的 Web 方法。 Web 方法应将一个对象返回到 Jquery,该对象将用于填充。
我尝试返回一个 JsonResult 对象,实际的对象,但似乎没有任何效果!我没有使用 MVC(不幸的是)。有没有一种方法可以从我的 Web 方法返回可供我的 AJAX 方法使用的对象?
这是我的 JQuery AJAX 方法的链接
http://pastebin.com/tRSaY5rG
http://pastebin.com/WajXyPMM
谢谢!
I have a web Method in my C# that is called via Jquery ajax method. The web method should return an object back to the Jquery which will be used to populate.
I have tried returning a JsonResult object, the actual object and nothing seems to work! I'm not using MVC (Unfortunately). Is there a way that I can return an object from my web method which can be used by my AJAX method?
here is the link for my JQuery AJAX method
http://pastebin.com/tRSaY5rG
http://pastebin.com/WajXyPMM
Thanks!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用 JQuery 从数据库获取结果并使用项目填充页面上的 UL。这是您要找的吗?
Javascript
ASPX
我努力让这项工作正常运行的代码是:
I have used JQuery to get results from a database and populate a UL on a page with the items. Is this what you were looking for?
Javascript
ASPX
The bit that code me struggling to get this working was: