Web API Post方法无效

Web API Post方法无效,第1张

概述我有一个webapi控制器,以下是一个post方法. public HttpResponseMessage Register(string email, string password) { } 我如何从浏览器进行测试? 当我用浏览器从浏览器测试时,它没有击中控制器. http://localhost:50435/api/SignUp/?email=sini@gmail.com&pa 我有一个webAPI控制器,以下是一个post方法.
public httpResponseMessage Register(string email,string password)   {   }

我如何从浏览器进行测试?

当我用浏览器从浏览器测试时,它没有击中控制器.

http://localhost:50435/API/SignUp/?email=sini@gmail.com&password=sini@1234

它给了我以下错误.

Can’t bind multiple parameters (‘ID’ and ‘password’) to the request’s
content.

你能帮我么???

解决方法 您收到错误,因为您无法以这种方式将多个参数传递给WebAPI.

第一种选择:
您可以通过以下方式创建一个类并从body传递数据:

public class Foo{    public string email {get;set;}    public string password {get;set;}}public httpResponseMessage Register([FromBody] Foo foo) {    //do something    return Ok();}

第二种选择:

public httpResponseMessage Register([FromBody]dynamic value){    string email= value.email.ToString();    string password = value.password.ToString();}

并以这种方式传递Json数据:

{  "email":"abc@test.com","password":"123@123"}

更新:

如果您想从URL获取数据,那么您可以使用属性路由.

[Route("API/{controller}/{email}/{password}")]public httpResponseMessage Register(string email,string password) {    //do something    return Ok();}

注意:网址应为:http:// localhost:50435 / API / SignUp / sini @ gmail.com / sini @ 1234不要忘记在WebAPIConfig中启用属性路由如果使用这种方式,则会出现安全问题.

总结

以上是内存溢出为你收集整理的Web API Post方法无效全部内容,希望文章能够帮你解决Web API Post方法无效所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1130459.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存