本文介绍了什么是 React 或 React-Native 中的 Refs 以及使用它们的重要性的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在阅读 React 文档时,我遇到了 Refs.我想知道为什么使用 Refs,使用它们的目的是什么.我以前在任何以前的项目中都没有使用过它们.有些人建议避免使用 Refs,我不知道为什么.

While going through react documentation I came across Refs. I want to know why Refs are used, what is purpose of using them. I haven't used them before in any previous projects. Some people suggest avoid using Refs, I don't know why.

推荐答案

这里有很好的解释:https://facebook.github.io/react/docs/refs-and-the-dom.html

refs 有几个很好的用例:

  • 管理焦点、文本选择或媒体播放.

  • Managing focus, text selection, or media playback.

触发命令式动画.

与第三方 DOM 库集成.

Integrating with third-party DOM libraries.

避免对任何可以声明性完成的事情使用引用.

Avoid using refs for anything that can be done declaratively.

这篇关于什么是 React 或 React-Native 中的 Refs 以及使用它们的重要性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-21 07:46