How to change default Web API 2 to JSON formatter?

后端 未结 7 1121
面向向阳花
面向向阳花 2020-12-13 14:40

I have a Web API project that returns some product data. It negotiates the return type correctly depending on the Accept header (JSON/XML) of the request. The problem is, if

7条回答
  •  失恋的感觉
    2020-12-13 14:54

    Or just remove the XmlFormatter

    var formatters = GlobalConfiguration.Configuration.Formatters;
    formatters.Remove(formatters.XmlFormatter);
    

提交回复
热议问题