作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
REST 服务应该提供内容协商。这意味着客户端发送一个 Accept header ,其中包含所需的响应内容类型。如果服务不支持这种媒体类型,它应该以状态码 406( Not Acceptable )进行响应。
我尝试将此行为映射到 ASP.NET Core。如果 ASP.NET 核心无法识别 Accept header 中的媒体类型,它会返回一个 JSON 文档。在以前版本的框架中,上述行为可以通过在配置中添加一个特殊的输出格式化程序来实现:
public void ConfigureServices(IServiceCollection services) {
services.AddMvc(options => {
options.OutputFormatters.Insert(0, new HttpNotAcceptableOutputFormatter());
});
}
HttpNotAcceptableOutputFormatter
在 RC1 之后从 ASP.NET Core 框架中删除。在当前版本的框架中是否有这个类的替代品?
最佳答案
在这种情况下,最好找到删除功能的提交,看看它可能被替换为什么。在这种情况下,HttpNotAcceptableOutputFormatter
被 this commit 删除修复 issue #4612 :
Alter content negotiation algorithm so that it can be configured (via MvcOptions) to always respect an explicit Accept header.
MvcOptions.ReturnHttpNotAcceptable
,这是
MvcOptions
上的设置使用
AddMvc
添加 MVC 时配置的.
services.AddMvc(options =>
{
options.ReturnHttpNotAcceptable = true;
});
关于c# - ASP.NET Core 中的状态码 406( Not Acceptable ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44229274/
我是一名优秀的程序员,十分优秀!