为什么我无法读取组件的参数?即使我从chrome控制台复制路径,它也会返回undefined。这是一个很长的身份证,但我不认为这应该是一个问题。任何想法为什么会发生这种情况?
componentDidMount(){
console.log(this)
// the above code logs the argument below too
console.log(this["-LH4IZUHM7LDbFKghUS6"])
// logs undefined
}
使用以下JSX:
<div ref={e => this[e.id}></div>