从 WebService 返回 DataSet 并使用 jQuery $.ajax 填充数据列表

发布于 2024-10-22 08:46:41 字数 76 浏览 6 评论 0原文

有什么方法可以让我从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我的奇迹 2024-10-29 08:46:41

这个问题有点老了……但我还是会回答。

我建议使用自定义类,但使用数据集可以做到这一点。

jQuery 代码:

  <script type="text/javascript">
    $.ajax({
      type: "POST",
      url: "Default.aspx/GetSomeData",
      data: "{}",
      contentType: "application/json; charset=utf-8",
      dataType: "xml",
      success: function (msg) {
        $(msg).find('Table').each(function (i, row) {
          alert($(row).find('Field').text());
        });
      }
    });
  </script>

C# 代码:

    [WebMethod]
    [ScriptMethod(ResponseFormat = ResponseFormat.Xml)]
    public static string GetSomeData()
    {
        var dataSet = new DataSet();

        // Use proper try-catch!
        string connStr = "Connection String Here";
        using (var conn = new SqlConnection(connStr))
        {
            using (var com = new SqlCommand("select top 5 ID, Field from Table", conn))
            {
                var adp = new SqlDataAdapter(com);
                adp.Fill(dataSet);
            }
        }

        return dataSet.GetXml();
    }

注意: 我使用了 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:

  <script type="text/javascript">
    $.ajax({
      type: "POST",
      url: "Default.aspx/GetSomeData",
      data: "{}",
      contentType: "application/json; charset=utf-8",
      dataType: "xml",
      success: function (msg) {
        $(msg).find('Table').each(function (i, row) {
          alert($(row).find('Field').text());
        });
      }
    });
  </script>

C# Code:

    [WebMethod]
    [ScriptMethod(ResponseFormat = ResponseFormat.Xml)]
    public static string GetSomeData()
    {
        var dataSet = new DataSet();

        // Use proper try-catch!
        string connStr = "Connection String Here";
        using (var conn = new SqlConnection(connStr))
        {
            using (var com = new SqlCommand("select top 5 ID, Field from Table", conn))
            {
                var adp = new SqlDataAdapter(com);
                adp.Fill(dataSet);
            }
        }

        return dataSet.GetXml();
    }

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.

吾性傲以野 2024-10-29 08:46:41

不,你不能这样做。您必须使用简单类型创建自定义类并返回它。

No, you can't do it. You must create your custom class with simple types and return it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文