我正在评估使用Asp.Net Core 2的Web API应用程序的配置。要进行配置,我知道我的项目最好使用.AddMvcCore()而不是AddMvc(),因为我不需要Razor,因为我们可以看到here

现在,我不确定是否也需要这个.AddFormatterMappings()。所以我的问题是什么呢?

最佳答案

您可以从source code in the MVC GitHub repo中看到,它在DI设置中添加了 FormatFilter 服务。 FormatFilter类的摘要如下:

10-08 08:28