- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在使用 ASP.NET WebApi2 和 Swashbuckle/Swagger 时,我尝试使用 FromUri 属性绑定(bind)对象,如下所示:
[RoutePrefix("api/v1/example")]
public class ExampleController : ApiController
{
[HttpGet]
[Route("{id}")]
public ExampleModel Get(string id, [FromUri]ExampleModel searchCriteria)
{
...
}
}
public class ExampleModel
{
public string id { get; set; }
public string firstName { get; set; }
public string lastName { get; set; }
}
我发现执行此 GET 操作并按姓氏搜索的 URL 最终类似于:
http://localhost:52259/api/v1/example/1?searchCriteria.firstName=paul
如何从查询参数中删除“searchCriteria”前缀?我想将它作为 ExampleModel 对象保留在 Controller 的方法签名中,但能够使用(并将其反射(reflect)在 Swagger UI 文档中):
http://localhost:52259/api/v1/example/1?firstName=paul
最佳答案
FromUri 属性上有一个 Name 属性。如果我将其设置为空字符串,它会使 Swagger UI 文档出现时没有“searchCriteria”。前缀:
public ExampleModel Get(string id, [FromUri(Name = "")]ExampleModel searchCriteria)
{
...
}
无论是否存在“searchCriteria”, Controller 似乎都会收到 firstName。前缀作为查询参数名称的一部分。
关于c# - 使用 FromUri 绑定(bind)没有参数名称前缀的对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44396254/
我一直在尝试在我当前的应用程序中包含 Song.FromURI() 方法,但总是出现“CrossThreadMessagingException”。 我已经开始了一个新项目,并从字面上复制并粘贴了 M
我使用 [FromUri] 在我的 web api 操作中获取参数,例如: public TestController { public ActionResult TestMethod([Fr
我正在使用 Asp.NET WebApi,让我感到困惑的一件事是完成请求时的绑定(bind)。 我有这个 ViewModel: [DataContract(Name="Store")] public
我正在尝试实现一个搜索过滤器以在我的一个 Controller 中获取对象。我有以下代码: public class SearchFilter { public DateTime? Busin
我在 web api 中有一个新方法 [HttpPost] public ApiResponse PushMessage( [FromUri] string x, [FromUri] string y
在使用 ASP.NET WebApi2 和 Swashbuckle/Swagger 时,我尝试使用 FromUri 属性绑定(bind)对象,如下所示: [RoutePrefix("api/v1/ex
我想将在 uri 中带有嵌套数组的复杂对象发送到 GET 请求中的 MVC 操作方法。 考虑以下代码: public ActionResult AutoCompleteHandler([FromUr
我有一个项目列表,每个项目都有一个图像(从远程服务器下载),如下所示: var image = new Image { WidthRequest
我们有多个 API Controller 接受 GET 请求,如下所示: //FooController public IHttpActionResult Get([FromUri]Foo f); /
我熟悉 FromBody 和 FromRoute。他们似乎很清楚。 我使用 FromUri 来处理映射到列表或 string[] 的多值参数。 FromQuery 听起来很相似,但有什么区别吗? 最佳
[Route("Street/{ZoneID}/{StreetID}/")] public HttpResponseMessage GetStreet(int ZoneID,int Stree
我有以下 API Controller 操作 [HttpGet] [Route("assets")] public async Task Get([FromUri]SearchCriteria sea
我正在尝试构建一个 RESTApi 端点,用户可以在其中发送多个 ID 来过滤特定资源。 因此我创建了一个请求对象,它可以在我自己的项目中重复使用以保持简单(至少对我而言)。 在构建 GET 调用 Q
我想使用属性路由和 [FromUri] 属性将 URL 参数绑定(bind)到我的 Point 对象,以便可以使用以下 URL: /foo-1,2 public IHttpActionResult P
在 WebApi 中,我可以使用 [FromUri] 修饰 Controller 操作上的参数,以便将 URI 的组件“反序列化”到 POCO 模型中;又名模型绑定(bind)。 尽管从 2.0 开始
我有一个带 url 的 MVC Controller ,它有一个参数绑定(bind),里面有方括号 public Product GetProduct([Bind(Prefix = "product
我正在使用 ImageSource.FromUri(new Uri("https://my image uri") 并且效果很好。 但是如何判断我是否已成功检索图像? 当我提供一个不存在的 URI 时
我目前正在创建一个新的 API,但我需要通过 URL 接收复杂的参数。我无法在不冒其他系统出错的风险的情况下轻松更改这些参数。 我正在使用 .Net Core 2.1,由于 [FromUri] 不存在
我在下面定义了一个 WebApi 操作。 (我使用的是 MediatR 库,它与我的问题略有相关) [HttpGet] [Route] public async Task Search([FromUr
我们正在使用 Asp.Net WebApi 创建 RestService。但由于某种原因,当尝试使用 [FromURI] 属性反序列化复杂属性时,Name 属性在 DataMember 属性中被忽略。
我是一名优秀的程序员,十分优秀!