如何从c#中的代码动态生成JSON对象

时间:2016-05-17 05:17:12

标签: javascript c# asp.net json webforms

我想使用JSON对象制作流程图

HTML

var chart = null;
$(document).ready(function(){
  chart = new FlowChart($);
 var chartJSON = {
  nodes: [

    { id: 'p1', type: 'simple-node', left: 120 ,top:2200 , content:'Process 1'},

    { id: 'p2', type: 'simple-node', left: 120,top:  2400,content:'Process 2' },

    { id: 'p3', type: 'simple-node', left: 120, top: 2600,content:'Process 3'}

  ],
  connections: [
    { start: 'p1', end: 'p2' },
     { start: 'p2', end: 'p3' },

  ]
};  
chart.importChart(chartJSON);

这样会在页面上创建一个FlowChart

enter image description here

但我需要根据动态的sql查询结果从代码后面填充这个json,我是javascript的新手,无法找到解决方案的确切方向。

3 个答案:

答案 0 :(得分:3)

查看Newtonsoft json nuget包。

您可以调用一个方法将对象序列化为Json

例如。 JsonConvert.SerializeObject(myObj);

答案 1 :(得分:1)

是的,我们可以通过使用javascript seralize和desearlize选项动态传递给代码。

例如:

result = JSON.stringify(p)// from client side it serialize json object

var a =new JavaScriptSerializer().Deserialize<class>(result) // server side seralize

注意使用system.web.serialization或newtonsoftjson dll&#39;

答案 2 :(得分:0)

详细的答案可能会有所帮助

创建类似

的类
public class connections
{
    public string start { get; set; }
    public string end { get; set; }
}

public class chartItem
{
        public string id { get; set; }
        public string type { get; set; }
        public int left { get; set; }
        public int top { get; set; }

        public string content { get; set; }
}

// holding both chartItems and nodes
public class ChartJson
{
        public List<connections> connections { get; set; }
        public List<chartItem> nodes { get; set; }
}

我正在使用WebApiController,您也可以使用PageMethods

public class ChartController : ApiController
{

  public ChartJson Get()
  {
        ChartJson chartJson = new ChartJson();
        chartJson.nodes = getNodes(); //function to get data from database
        chartJson.connections = getConnections(); //function to get data from database
        return chartJson;
  }

}

在.aspx页面

在.aspx页面上,使用

下面的jQuery调用函数
$(function () { 
                $.getJSON("api/Chart/Get", function (result) {                    
                    console.log(result.connections); //Check results and bind with your chart object
                    console.log(result.nodes); //Check results and bind with your chart object
            })
 });

由于