自定义组装json对象
Posted 红磨坊后的白桦树
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自定义组装json对象相关的知识,希望对你有一定的参考价值。
组装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对象的主要内容,如果未能解决你的问题,请参考以下文章
VSCode自定义代码片段12——JavaScript的Promise对象