码迷,mamicode.com
首页 > Web开发 > 详细

自定义组装json对象

时间:2019-12-19 16:19:57      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:rem   ble   else   foreach   bsp   ext   row   reac   string   

组装json对象

public string strTree(DataTable dt, string type, string state)
        {
            string strjosn = "";
            foreach (DataRow dr in dt.Rows)
            {
                if (string.IsNullOrEmpty(strjosn))
                {
                    strjosn = "{\"id\":\"" + dr[1] + "\",\"text\":\"" + dr[0] + "\",\"state\":\"" + state +
                              "\",\"attributes\":{\"type\":\"" + type + "\"}}";
                }
                else
                {
                    strjosn += "," + "{\"id\":\"" + dr[1] + "\",\"text\":\"" + dr[0] + "\",\"state\":\"" + state +
                               "\",\"attributes\":{\"type\":\"" + type + "\"}}";
                }
            }
            strjosn = "[" + strjosn + "]";
            return strjosn;
        }

 

自定义组装json对象

标签:rem   ble   else   foreach   bsp   ext   row   reac   string   

原文地址:https://www.cnblogs.com/macT/p/12068150.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!