typescript 仅在开发模式下抛出错误。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript 仅在开发模式下抛出错误。相关的知识,希望对你有一定的参考价值。

import { isDevMode } from '@angular/core';


export class Foo {
  @Input()
  set foo(v: any) {
    if (isDevMode() && myThingIsInvalid) {
      throw myErrorForDevs();
    }
  }
}

以上是关于typescript 仅在开发模式下抛出错误。的主要内容,如果未能解决你的问题,请参考以下文章

CImg 在 Debug 模式下抛出异常,在 Release 中工作正常

“brew services restart mongodb-community”在 brew services 列表下抛出错误状态。这是啥错误?

UnhandledPromiseRejectionWarning:此错误源于在没有 catch 块的情况下抛出异步函数内部

Spring boot Eureka Server Client 在docker下抛出连接超时

为啥 TypeScript 接受被覆盖方法的正确返回,即使它不可访问?

python 如果不存在则创建文件,在其他情况下抛出异常