您好,登录后才能下订单哦!
这篇文章主要讲解了“React怎么获取DOM和组件”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“React怎么获取DOM和组件”吧!
在React的开发模式中,通常情况下不需要、也不建议直接操作DOM原生,但是某些特殊的情况,确实需要获取到DOM进行某些操作:
管理焦点,文本选择或媒体播放;
触发强制动画;
集成第三方 DOM 库;
我们可以通过refs获取DOM;
如何创建refs来获取对应的DOM呢?目前有三种方式:
方式一:传入字符串
(这种做法已经不推荐)
在React元素上绑定一个ref字符串, 使用时通过
this.refs.传入的字符串
格式获取对应的元素;
import React, { PureComponent } from 'react' export class App extends PureComponent { getDom() { // 方式一 console.log(this.refs.hello) // <h3>Hello World</h3> } render() { return ( <div> <h3 ref="hello">Hello World</h3> <button onClick={() => this.getDom()}>获取DOM</button> </div> ) } } export default App
方式二:传入一个对象
(常用的方式, 推荐)
在react中导入createRef, 通过
createRef()
方式提前创建出来一个对象, 将创建出来的对象绑定到要获取的元素上;使用时获取到创建的对象其中有一个
current
属性就是对应的元素;
import React, { PureComponent, createRef } from 'react' export class App extends PureComponent { constructor() { super() // 提前创建一个ref对象 this.titleRef = createRef() } getDom() { // 方式二 console.log(this.titleRef.current) // <h3>Hello World</h3> } render() { return ( <div> <h3 ref={this.titleRef}>Hello World</h3> <button onClick={() => this.getDom()}>获取DOM</button> </div> ) } } export default App
方式三:传入一个函数
(了解)
该函数会在DOM被挂载时进行回调,这个函数回调时会传入一个元素对象,我们可以自己保存;
使用时,直接拿到之前保存的元素对象即可;
import React, { PureComponent, createRef } from 'react' export class App extends PureComponent { getDom() { } render() { return ( <div> <h3 ref="hello">Hello World</h3> <h3 ref={this.titleRef}>Hello World</h3> {/* 方式三, 回调函数会返回el, el就是我们要获取的DOM了 */} <h3 ref={el => console.log(el)}>Hello World</h3> <button onClick={() => this.getDom()}>获取DOM</button> </div> ) } }
ref 的值根据节点的类型而有所不同:
当 ref 属性用于 HTML 元素时,构造函数中使用 React.createRef() 创建的 ref 接收底层 DOM 元素作为其 current 属性;
当 ref 属性用于自定义 class 组件时,ref 对象接收组件的挂载实例作为其 current 属性;
你
不能在函数组件上使用 ref 属性
,因为他们没有实例;
这里我们演示一下ref获取一个class组件对象的实例:
import React, { PureComponent, createRef } from 'react' // 创建一个类组件, 作为子组件测试 class Test extends PureComponent { test() { console.log("Test"); } render() { return <h3>Test</h3> } } export class App extends PureComponent { constructor() { super() this.tsetRef = createRef() } getDom() { // 获取组件实例 console.log(this.tsetRef.current) // 可以调用组件的实例方法 this.tsetRef.current.test() } render() { return ( <div> <Test ref={this.tsetRef}/> </div> ) } } export default App
函数式组件是没有实例的,所以无法通过ref获取他们的实例:
但是某些时候,我们可能想要获取函数式组件中的某个DOM元素;
这个时候我们可以通过
React.forwardRef
来绑定函数组件中的某个元素, forwardRef中接收两个参数, 参数一: props, 参数二: ref,后面我们也会学习 hooks 中如何使用ref;
import { render } from '@testing-library/react'; import React, { PureComponent, createRef, forwardRef } from 'react' } // 创建一个函数组件, 作为子组件测试 // 使用forwardRef将函数包裹起来 const Foo = forwardRef(function(props, ref) { return ( <h3 ref={ref}>Foo</h3> ) }) export class App extends PureComponent { constructor() { super() // 提前创建一个ref对象 this.fooRef = createRef() } getDom() { // 获取函数组件中元素的DOM console.log(this.fooRef.current) } render() { return ( <div> <Foo ref={this.fooRef}/> </div> ) } } export default App
感谢各位的阅读,以上就是“React怎么获取DOM和组件”的内容了,经过本文的学习后,相信大家对React怎么获取DOM和组件这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是亿速云,小编将为大家推送更多相关知识点的文章,欢迎关注!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。