为了账号安全,请及时绑定邮箱和手机立即绑定

TypeError:“此未定义”在成员数组上使用forEach时

TypeError:“此未定义”在成员数组上使用forEach时

慕村9548890 2021-04-29 14:21:39
我有一堂课marketData:export class marketData {    id: number;    denomCount: number;    itemCount: number;    conversionRates: Array<number> = [];    conversionRateToLowest: Array<number> = [];    itemPrices: Array<Array<number>> = [];}我想为其定义一个成员函数,该成员函数validate()检查类的值是否设置正确。我写了这种方法的一部分来检查itemPrices:this.itemPrices.forEach(function(this, prices){          if(prices.length != this.itemCount){              // handle error           });但是,上面给了我一个ERROR TypeError: "this is undefined"。尝试以itemPrices这种方式检查时,我得到了完全相同的错误:this.itemPrices.forEach(function(prices){          if(prices.length != this.itemCount){              // handle error          });即没有this在function参数。访问itemCount成员变量的正确方法是什么?
查看完整描述

3 回答

?
精慕HU

TA贡献1845条经验 获得超8个赞

这是因为您使用forEach的方式。改用箭头功能,如下所示。并且建议在使用打字稿类时始终使用箭头功能,否则您将继续遇到此问题。


this.itemPrices.forEach((prices) =>{

          if(prices.length != this.itemCount){

              // handle error

            }

});


查看完整回答
反对 回复 2021-05-20
?
繁星coding

TA贡献1797条经验 获得超4个赞

您可以使用ES6的箭头功能进行访问this。无论如何,请务必仔细阅读本文,以了解thisJavaScript的上下文以及在JS的OOP中使用它们的情况。


this.itemPrices.forEach((prices: number) => {

  if (prices.length != this.itemCount){

    // handle error 

  });

});


查看完整回答
反对 回复 2021-05-20
?
BIG阳

TA贡献1859条经验 获得超6个赞

this函数中的值与类中的值不同。您可以使用胖箭头功能,也可以使用bind(this)将该功能绑定到类。


this.itemPrices.forEach(function(prices){

          if(prices.length != this.itemCount){

              // handle error

          }).bind(this);


查看完整回答
反对 回复 2021-05-20
  • 3 回答
  • 0 关注
  • 133 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信