您好,登錄后才能下訂單哦!
這篇文章主要講解了“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進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。