webapi设置一个Action同时支持get和post请求
Posted wynn0123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了webapi设置一个Action同时支持get和post请求相关的知识,希望对你有一定的参考价值。
代码如下:
[AcceptVerbs("GET", "POST")] public HttpResponseMessage Http([FromUri]ProxyHttpParam getParam, ProxyHttpParam postParam) { var res = new HttpResponseMessage(HttpStatusCode.OK); return res; }
说明:
重点在AcceptVerbs这个特性,传入要支持的Method即可
上面的代码:
若客户端请求为GET,则getParam有值
若客户端请求为POST,则postParam有值
MSDN
https://msdn.microsoft.com/zh-cn/library/system.web.http.acceptverbsattribute(v=vs.118).aspx
以上是关于webapi设置一个Action同时支持get和post请求的主要内容,如果未能解决你的问题,请参考以下文章