软件编程
位置:首页>> 软件编程>> C#编程>> C#使用JArray和JObject封装JSON对象

C#使用JArray和JObject封装JSON对象

作者:大葱哥  发布时间:2022-10-15 16:56:16 

标签:C#,JArray,JObject,封装,JSON,对象

1、JObject:基本的json对象

/// <summary>
   /// Gets the j object.
   /// </summary>
   /// <returns></returns>
   public JObject GetJObject()
   {
       var obj = new JObject {{"Name", "Mark" } };
       return obj;
   }

C#使用JArray和JObject封装JSON对象

2、JObject:嵌套子对象(JObject嵌JObject)

/// <summary>
   /// Gets the j object.
   /// </summary>
   /// <returns></returns>
   public JObject GetJObject()
   {
       var obj = new JObject {{"Name", "Mark"}, {"Age", 8 }};
       var info = new JObject {{"Phone", "132****7777"}, {"Gender", "男"}};
       obj.Add("Info", info);
       return obj;
   }

C#使用JArray和JObject封装JSON对象

3、JArray:基本json对象中的数组

/// <summary>
   /// Gets the j array.
   /// </summary>
   /// <returns></returns>
   public JArray GetJArray()
   {
       var jarray = new JArray();
       var mark = new JObject { { "Name", "Mark" }, { "Age", 8 } };
       var jack = new JObject { { "Name", "Jack" }, { "Age", 9 } };
       jarray.Add(mark);
       jarray.Add(jack);
       return jarray;
   }

C#使用JArray和JObject封装JSON对象

4、JArray:多个json对象数组

/// <summary>
   /// Gets the j array.
   /// </summary>
   /// <returns></returns>
   public JObject GetJArray()
   {
       var obj = new JObject();
       var student = new JArray
       {
           new JObject {{ "Name", "Mark" }, { "Age", 8 } },
           new JObject {{ "Name", "Jack" }, { "Age", 9 } }
       };
       var results = new JArray
       {
           new JObject {{ "Subject", "语文"}, { "Score", 100}},
           new JObject {{ "Subject", "数学" }, { "Score", 88}}
       };
       obj.Add("Student", student);
       obj.Add("Results", results);
       return obj;
   }

C#使用JArray和JObject封装JSON对象

5、JArray:json数组嵌套数组(一个学生对应多个课程分数)

/// <summary>
   /// Gets the results.
   /// </summary>
   /// <returns></returns>
   public JObject GetResults()
   {
       var mark = new JObject { { "Name", "Mark" }, { "Age", "8" } };
       var results = new JArray
       {
           new JObject {{ "Subject", "语文"}, { "Score", 100}},
           new JObject {{ "Subject", "数学" }, { "Score", 88}}
       };            
       mark.Add("Results", results);
       return mark;
   }

C#使用JArray和JObject封装JSON对象

总结:写接口的时候,类似上面的5种情况经常会遇到,有时候会弄糊涂,算一次简单的复习吧。

来源:https://www.cnblogs.com/dacongge/p/6957074.html

0
投稿

猜你喜欢

手机版 软件编程 asp之家 www.aspxhome.com