2

当我尝试使用其中一个coldhot函数时jasmine-marbles,我不断得到TypeError: Class constructor Observable cannot be invoked without 'new'. 有人知道如何解决这个错误吗?这是我下面的内容。

   import { hot, cold } from "jasmine-marbles";
   import { Observable } from "rxjs/Observable";

   const myAction = hot("--a-", { a: "TEST" };
4

1 回答 1

1

在将 tsconfig.json(在项目根目录)中的“target”属性更改为“es6”后,我开始收到此错误,因此我恢复为旧的“es5”

于 2018-07-11T05:58:13.690 回答