错误TS2554:应使用0个参数,但得到1个.pipe(takeUntil(this.unsubscribe $))

时间:2019-08-09 06:49:27

标签: typescript rxjs angular8

这行代码引发错误char test[12] = { 0 }; *(long *)test[0] = 0x12345678; if (test[0] == 0) { // the compiler could assume that `test[0]` is still `0`. }

我尝试过.pipe(takeUntil(this.unsubscribe$))没有显示错误,

如果我删除了这两行代码

.pipe.apply(takeUntil(this.unsubscribe$))
[ this.setPage(this.currentPagingPage);
        this.productsLoading = false;] in subscribe()

我期望返回Observable,但是会出现错误,期望参数为0,但是得到了1.ts(2554)

0 个答案:

没有答案