title: .Net Core模型绑定之FromBody、FromUri、FromQuery、FromRoute
categories: 后端
date: 2022-10-29 17:21:11
tags:
- .NET
FromRoute
[FromRoute]
属性处理“?”之前的路由参数 在URI中,即路径参数,如orders/{id}
中的id
FromUri、FromQuery
[FromQuery]
属性处理查询参数,即“?”之后的键值对 在 URI 中。
[FromUri]
是在Webapi中用的,[FromQuery]
在ASP.NET Core MVC中使用,两者是一样的作用
FromForm
FromForm处理前端传过来的application/x-www-url-formencoded
格式数据,如下:
user=conejo&password=panda
// ContentType: application/x-www-url-formencoded
FromBody
FromBody处理前端传过来的application/json
格式数据,如下:
{ "user" : "conejo", "password" : "panda" }
// ContentType: application/json
frombody和fromform的使用场景取决于前端设置content-type参数的值,其内容都是从request body内取的
参考
- https://stackoverflow.com/questions/57616925/what-the-difference-between-fromform-and-frombody-in-asp-net-core
- https://stackoverflow.com/questions/50453578/asp-net-core-fromform-and-frombody-same-action
- https://stackoverflow.com/questions/47976168/are-fromuri-and-fromquery-the-same