React数组refs

时间:2017-07-26 12:20:12

标签: arrays reactjs refs

我已阅读Stackoverflow question about refs

上的帖子

我们可以使用类似下面的代码将refs数组分配给不同的输入,如下所示:

<Progressbar completed={25} id="Progress1" ref={(input) => {this.Progress[0] = input }}/>

<Progressbar completed={50} id="Progress2" ref={(input) => {this.Progress[1] = input }}/>

<Progressbar completed={75} id="Progress3" ref={(input) => {this.Progress[2] = input }}/>

但是当我尝试它时,它会返回此错误:

Uncaught TypeError: Cannot set property '0' of undefined

它不起作用,我错过了什么吗?

2 个答案:

答案 0 :(得分:8)

在构造函数中创建数组,如:

constructor(){
  super()

  this.Progress = []
}

答案 1 :(得分:1)

未初始化Progress数组,在构造函数中初始化它。