訪問接口時缺少model中的參數(shù)時,會提示:
The xx field is required
One or more validation errors occurred
原因是.net core webapi默認參數(shù)為不可空,因此會驗證并報錯。
解決方案:
在項目的.csproj中,修改Nullable為disable即可文章來源:http://www.zghlxwxcb.cn/news/detail-758264.html
<PropertyGroup>
<Nullable>disable</Nullable>
</PropertyGroup>
文章來源地址http://www.zghlxwxcb.cn/news/detail-758264.html
到了這里,關(guān)于.net core提示The xx field is required,One or more validation errors occurred的文章就介紹完了。如果您還想了解更多內(nèi)容,請在右上角搜索TOY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!