标签: reactjs
使用React.js时
为什么我会`ref` is not a prop& `key` is not a prop.错误
`ref` is not a prop
`key` is not a prop.
注释
ref
key
答案 0 :(得分:4)
检查出来:https://github.com/facebook/react/pull/5744
ref和key是React中保留的道具名称,在内部使用。这就是你收到这个警告的原因。
如果您想使用ref,请使用this.refs.yourinput
this.refs.yourinput