Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想完全禁用 WebAPI 控制器的模型验证。我尝试了几种方法来为 MVC 做这件事,但似乎 WebAPI 没有得到这些方法。
就我而言:
我正在尝试完全删除第 2 步。
试试这个:
config.Services.Clear(typeof(ModelValidatorProvider));
它应该完全禁用对 URI 参数和正文参数的验证。