标签:conf infer idf sources art model filter .net core mfile
在 Startup的ConfigureServices方法中添加:
services.Configure<ApiBehaviorOptions>(options =>
{
options.SuppressConsumesConstraintForFormFileParameters = true;
options.SuppressInferBindingSourcesForParameters = true;
options.SuppressModelStateInvalidFilter = true;
});
标签:conf infer idf sources art model filter .net core mfile
原文地址:https://www.cnblogs.com/zhuyuchao/p/9953006.html