博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c# webapi POST 参数解决方法
阅读量:5014 次
发布时间:2019-06-12

本文共 2470 字,大约阅读时间需要 8 分钟。

HttpWebRequest POST请求webapi:如果参数是简单类型,比如字符串(注意,拼接的字符串要HttpUtility.UrlEncode才行,否则服务端会丢失特殊字符&后面的数据)

要点:如下代码统一设置为:ContentType = "application/x-www-form-urlencoded";

服务端代码1:URL格式为 

public string Post([FromBody] string value)

则客户端Post的数据:拼接的字符串必须以 =开头,否则服务端无法取得value。例如:=rfwreewr2332322232 或者 {

'':value}

 

服务端代码2:URL格式为  ?value={value}

public string Post(string value)

则客户端Post的数据:需要url里拼接出KeyValue这样的数据

服务端代码3:URL格式为  

public string Post()

则客户端Post的数据:无要求。例如:key=rfwreewr2332322232。

服务端:可以用HttpContext.Current.Request.InputStream或者HttpContext.Current.Request.Form[0]都可以获取

 

如果post的参数类型比较复杂,则需要自定义类

要点:如下代码统一设置为:ContentType = "application/json";

服务端代码1:URL格式为  

 

public string Post([FromBody] Model value)或者 public string Post(Model value)

则客户端Post的数据:{\"id\":\"test1\",\"name\":\"value\"}。服务端会自动映射到对象。

提交代码如下:

HttpWebRequest wReq = (HttpWebRequest)WebRequest.Create("http://localhost:37831/api/Values");  wReq.Method = "Post";  //wReq.ContentType = "application/json";  //wReq.ContentType = "application/x-www-form-urlencoded";  wReq.ContentType = "application/json";    //byte[] data = Encoding.Default.GetBytes(HttpUtility.UrlEncode("key=rfwreewr2332322232&261=3&261=4"));  byte[] data = Encoding.Default.GetBytes("{\"id\":\"test1\",\"name\":\"value\"}");  wReq.ContentLength = data.Length;  Stream reqStream = wReq.GetRequestStream();  reqStream.Write(data, 0, data.Length);  reqStream.Close();  using (StreamReader sr = new StreamReader(wReq.GetResponse().GetResponseStream()))  {      string result = sr.ReadToEnd();         }

  服务段代码如下:

// POST api/values  //public string Post()  //{  //    FileInfo fi = new FileInfo(AppDomain.CurrentDomain.BaseDirectory + "log.txt");  //    StreamWriter sw = fi.CreateText();  //    StreamReader sr = new StreamReader(HttpContext.Current.Request.InputStream);  //    sw.WriteLine("1:" + sr.ReadToEnd()+"--"+ HttpContext.Current.Request.Form[0]);  //    sw.Flush();  //    sw.Close();  //    return "{\"test\":\"1\"}";  //}    // POST api/values  public HttpResponseMessage PostStudent(Student student)  {      FileInfo fi = new FileInfo(AppDomain.CurrentDomain.BaseDirectory + "log.txt");      StreamWriter sw = fi.AppendText();        sw.WriteLine("2:" + student.id);      sw.Flush();      sw.Close();      HttpResponseMessage result = new HttpResponseMessage { Content = new StringContent("{\"test\":\"2\"}", Encoding.GetEncoding("UTF-8"), "application/json") };      return result;  }

  

转载于:https://www.cnblogs.com/jake-ge/p/7008643.html

你可能感兴趣的文章
java 正则表达式-忽略大小写与多行匹配
查看>>
【转】MySQL GRANT REVOKE用法
查看>>
JavaScript 本地对象、内置对象、宿主对象
查看>>
hdu 1525 Euclid's Game 博弈论
查看>>
设计模式13-职责链模式
查看>>
knockout 与checkbox联动
查看>>
代替iframe的方法
查看>>
如何学习-学习理论(A-1)-KOLB学习周期理论
查看>>
FastReport For Delphi7 通用安装方法
查看>>
window.name 测试
查看>>
Jmeter工具使用
查看>>
源代码安装软件-MySQL
查看>>
winXP 更换网段之后,ssh等工具无法持续连接
查看>>
weblogic搭建总结
查看>>
mac 安装brew跟node
查看>>
风险识别方法
查看>>
admin组件使用
查看>>
C语言基础教程,C语言变量
查看>>
链表的反转
查看>>
断点续传,支持缓存和不缓存
查看>>