reactjs101 icon indicating copy to clipboard operation
reactjs101 copied to clipboard

Ch04 Refs 與表單處理

Open yachtingchen opened this issue 7 years ago • 0 comments

"Refs 與表單處理"章節中提到的ref用法,在react官網上https://facebook.github.io/react/docs/refs-and-the-dom.html 已經不建議使用了,節錄如下:

If you worked with React before, you might be familiar with an older API where the ref attribute is a string, like "textInput", and the DOM node is accessed as this.refs.textInput. We advise against it because string refs have some issues, are considered legacy, and are likely to be removed in one of the future releases. If you're currently using this.refs.textInput to access refs, we recommend the callback pattern instead.

yachtingchen avatar Jan 13 '17 08:01 yachtingchen