React refs 数组
2017-07-26
23084
我在 Stackoverflow 上的一篇帖子中读到 关于 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个回答
在构造函数中创建数组,例如:
constructor(){
super()
this.Progress = []
}
CD..
2017-07-26
进度数组未初始化,请在构造函数中初始化它。
Asim Khan
2017-07-26