当前位置:   article > 正文

C#后端实现将数据库中的表转为JSON格式_c# 数据集 转 json 字段类型

c# 数据集 转 json 字段类型

前端做表单或者其他什么功能的时候,需要在数据库中调取大量数据,并且将这些数据封装成JSON格式。这里给出实现该功能的比较重要的几个代码片段。


void ReturnData()
        {
        //获取数据库中的数据


            string sql = "select * from  UserInfo ";
                
           

            DataSet ds = ReturnDataSet(sql, "Usertable");
           //将数据传给封装成JSON的方法
            string results = DataToJson(ds.Tables["Usertable"], ds.Tables["Usertable"].Rows.Count);
            //将最终得到的JSON传递给前端
            HttpContext.Current.Response.ContentType = "application/json";

            HttpContext.Current.Response.Write(results);

            HttpContext.Current.Response.End();
        }
    



  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24

从数据库中读取数据并将数据返回到表中的具体操作如下:

 public static DataSet ReturnDataSet(string sqlstr, string tablename)//返回DataSet、Datatable
        {
            conn = MyConnection();
            conn.Open();

            SqlDataAdapter sda = new SqlDataAdapter(sqlstr, conn);
            SqlCommandBuilder scb = new SqlCommandBuilder(sda);

            DataSet ds = new DataSet();
            sda.Fill(ds,tablename);

            return ds;
        }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

封装成JSON的具体操作如下:

string DataToJson(DataTable dt, int count)
        {
            StringBuilder sbjson = new StringBuilder();
            sbjson.Append("{");
            sbjson.Append("\"total\":" + count + ",\"rows\":[");
            if (dt != null)
            {
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    if (i > 0)
                    {
                        sbjson.Append(",");
                        sbjson.Append("{");
                        foreach (DataColumn dc in dt.Columns)
                        {
                            if (dt.Columns.IndexOf(dc) > 0)
                            {
                                sbjson.Append(",");
                                sbjson.Append("\"" + dc.ColumnName + "\":\"" + dt.Rows[i][dc.ColumnName].ToString().Trim() + "\"");
                            }
                            else
                            {
                                sbjson.Append("\"" + dc.ColumnName + "\":\"" + dt.Rows[i][dc.ColumnName].ToString().Trim() + "\"");
                            }
                        }
                        sbjson.Append("}");
                    }
                    else
                    {
                        sbjson.Append("{");
                        foreach (DataColumn dc in dt.Columns)
                        {
                            if (dt.Columns.IndexOf(dc) > 0)
                            {
                                sbjson.Append(",");
                                sbjson.Append("\"" + dc.ColumnName + "\":\"" + dt.Rows[i][dc.ColumnName].ToString().Trim() + "\"");
                            }
                            else
                            {
                                sbjson.Append("\"" + dc.ColumnName + "\":\"" + dt.Rows[i][dc.ColumnName].ToString().Trim() + "\"");
                            }
                        }
                        sbjson.Append("}");
                    }
                }
            }
            sbjson.Append("]}");
            return sbjson.ToString();
        }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/158038?site
推荐阅读
相关标签
  

闽ICP备14008679号