不能和lodash一起使用typescript Array <t>吗?

时间:2017-04-21 19:58:39

标签: typescript lodash

如果我尝试使用typescript数组,让我们说'some'或'sumBy',我得到T []不能分配给List的错误字典。我该如何解决这个问题?

this.balanceTotal = _.sumBy(this.invoices, i => i.balance);

这不起作用

let a = _.castArray(this.invoices);
this.balanceTotal = _.sumBy(a, i => i.balance);

enter image description here

0 个答案:

没有答案