- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
在 ASP.NET Core(本例中为 2.1)的 Controller 中使用 [FromBody]
时,它会处理所有到指定模型的转换并确保模型有效。这意味着如果提供的输入格式错误, Controller 方法甚至不会被调用。
最佳答案
在 asp.net core 2.1 中,ApiController
属性为 introduced作为选择加入特定于 Web API 的约定和行为的方式。在启动时使用 CompatibilityVersion.Version_2_1
标志来设置 compatibility 的级别.
新行为是验证错误将 automatically trigger an HTTP 400 response .如文档中所述,抑制此行为非常容易:
services.Configure<ApiBehaviorOptions>(options =>
{
options.SuppressModelStateInvalidFilter = true;
});
在这种情况下,您可以照常验证模型:
if (!ModelState.IsValid)
{
return BadRequest(ModelState);
}
至于你的第二个问题,这个范围太广了:
... to log invalid inputs in the way my system needs it ...
有filters (如 ExceptionFilterAttribute
),您可以使用。也许这就是您要找的东西?
关于c# - 使用 [FromBody] 并能够处理无效输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52343319/
我正在使用 Java 编写一个时钟程序,该程序能够“滴答作响”,但它存在问题。我认为它与 getter 和 setter 或 toString() 方法有关。 计数器类 package clock;
const Index = () => { // Ref Links const frefLinks = { 1: useRef(1), 2: useRef(2), 3: useRef(3
所以我读了here不能 pickle 装饰函数。确实: import multiprocessing as mp def deco(f): def wrapper(*args, **kwarg
我在go1.11.2 linux/amd64 版本。当包godog使用 go get github.com/DATA-DOG/godog/ 安装,godog 可执行文件在 $GOPATH/bin/中创
如何正确压缩字符串,以便 PHP 能够解压缩? 我试过这个: public static byte[] compress(String string) throws IOException {
我们这里的问题是表明 在测试中使用 Kleene 代数。 在 b 的值由 p 保留的情况下,我们有交换条件 bp = pb;两个程序之间的等价性简化为等式 在 b 的值不被 p 保留的情况下,我们有交
我有一个与我的网络相关的非常奇怪的问题,我在具有多个接口(interface)的 VirtualBox 上安装了 RDO Grizzly OpenStack。 虚拟盒子: eth0 - managem
我正在尝试使用 Passport.js授权谷歌OAuth2在 Node.js .我整个星期都在尝试让它工作,但不知道为什么它不工作,所以现在我求助于 stack 寻求一些潜在的帮助。我已经尝试了所有在
我是一名优秀的程序员,十分优秀!