从 WebService 返回 DataSet 并使用 jQuery $.ajax 填充数据列表
有什么方法可以让我从 Web 服务返回的数据集中填充数据列表。我想使用 $.ajax jquery 函数。 如果是的话,请给我一个小例子。
Is there any way so that I can populate datalist from the returned DataSet from web service. I want to use $.ajax jquery function.
If yes, then please give me a small example.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个问题有点老了……但我还是会回答。
我建议使用自定义类,但使用数据集可以做到这一点。
jQuery 代码:
C# 代码:
注意: 我使用了 DataSet.GetXml 方法,因为生成的 XML 更简单,而且您可能会得到一些 奇怪的错误只是按原样返回数据集。
This question is kind of old... but I'll answer anyway.
I would recommend using a custom class, but it is possible to do it using DataSets.
jQuery Code:
C# Code:
Note: I used the DataSet.GetXml method because the resulting XML is simpler and because you may get some weird errors just returning the DataSet as is.
不,你不能这样做。您必须使用简单类型创建自定义类并返回它。
No, you can't do it. You must create your custom class with simple types and return it.