类型“typeof BigNumber”的参数不能赋给类型“Value”的参数。

类型“typeof BigNumber”的参数不能赋给类型“Value”的参数。
类型“typeof BigNumber”缺少类型“Instance”中的以下属性: c, e, s

 

原来:

bigNumber._toFixed = function (...arg: any) {
  return new bigNumber(this).isNaN() ? '0' : new bigNumber(_this.toFixed(...arg)).toString();
};

 

 

修改后:

bigNumber._toFixed = function (...arg: any) {
  const _this = Number(this);
  return new bigNumber(_this).isNaN() ? '0' : new bigNumber(_this.toFixed(...arg)).toString();
};

 

上一篇:加入商品分类信息,考虑用户所处阶段的 图模型 推荐算法 Rws(random walk with stage)


下一篇:maven编译报错 -source 1.5 中不支持 lambda 表达式