C# ContentType: "application/json" 请求方式传json参数问题
Posted 蜗牛不要快
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# ContentType: "application/json" 请求方式传json参数问题相关的知识,希望对你有一定的参考价值。
处理Http请求时遇到的ContentType为application/json方式,记录下这种Post请求方式下如何传json参数:
var request = (HttpWebRequest)WebRequest.Create("http://url"); request.ContentType = "application/json"; request.Method = "POST"; using (var streamWriter = new StreamWriter(request.GetRequestStream())) { string json = new javascriptSerializer().Serialize(new { user = "Foo", password = "Baz" }); streamWriter.Write(json); } var response = (HttpWebResponse)request.GetResponse(); using (var streamReader = new StreamReader(response.GetResponseStream())) { var result = streamReader.ReadToEnd(); }
以上是关于C# ContentType: "application/json" 请求方式传json参数问题的主要内容,如果未能解决你的问题,请参考以下文章
C#中 Query 使用ajax返回String应该怎么写?