html post 方法出错,Web API Post方法无效

您收到错误,因为您无法以这种方式将多个参数传递给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中启用属性路由如果使用这种方式,则会出现安全问题.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值