初探Newtonsoft.json
2021-04-30 08:39
标签:技术 ali convert ica ring https str ESS local Json的序列化和反序列化是个使用面很广的东西; 原因就在于当你开始使用webapi进行数据交互的时候,很多的操作就需要依靠反序列化将传递的json数据解析即可; 下载方式可以用管理NuGet包进行下载,注意这里需要配置NuGet的包地址: 注意源地址为:https://www.nuget.org/api/v2/ 示例代码如下: 客户端: 服务端API: 初探Newtonsoft.json 标签:技术 ali convert ica ring https str ESS local 原文地址:https://www.cnblogs.com/LeeSki/p/12153189.html 1 string apiUrl = "http://localhost:3120/";
2 HttpWebRequest req = (HttpWebRequest)WebRequest.Create(apiUrl+ @"api/Student");
3 req.Method = "GET";
4 //req.ContentType = "application/json";
5
6 HttpWebResponse res = (HttpWebResponse)req.GetResponse();
7 Stream resStream = res.GetResponseStream();
8 StreamReader strReader = new StreamReader(resStream, Encoding.UTF8);
9 string data = strReader.ReadToEnd();
10 List
>(data);//反序列化
1 public class StudentController : ApiController
2 {
3 public List
上一篇:Django+Celery+redis kombu.exceptions.EncodeError:Object of type is not JSON serializable报错
下一篇:CSS基础-----(选择器)