Wrapped的返回值取值

Bared

 

Wrapped的返回值取值


Wrapped

 

Wrapped的返回值取值

 

using Newtonsoft.Json;
using Newtonsoft.Json.Linq;

string str = JsonConvert.SerializeObject(student);
StringContent content = new StringContent(str, Encoding.UTF8, "application/json");
HttpClient client = new HttpClient();
var result =await client.PostAsync(url + "PostModel", content);
var r= result.Content.ReadAsStringAsync().Result;
JObject jObject = JObject.Parse(r);
string name = jObject["name"].ToString();

通过JObject,采用键值对的方式取出结果

上一篇:VS中安装Newtonsoft.json及序列化反序列化


下一篇:Newtonsoft 六个超简单又实用的特性,值得一试 【下篇】