今天工作中使用了這個,感覺很好用啊!
首先: 這個ReactDom是幹嘛用的?
答:
react-dom
包提供了 DOM 特定的方法,可以在你的應用程式的頂層使用,如果你需要的話,也可以作為 React模型 之外的特殊操作DOM的介面。 但大多陣列件應該不需要使用這個模組。
其次: 如何引用?
答:
如果你使用 ES6 與 npm ,你可以寫 import ReactDOM from `react-dom`, 或者:
import { render, unmountComponentAtNode } from `react-dom`
再問: 有哪些介面?可以幹嘛?
答:
一共有五個介面,
render()
hydrate()
ReactDOM.render(element, container[, callback]) // 渲染一個 React 元素到由 container 提供的 DOM 中,並且返回元件的一個 引用(reference) (或者對於 無狀態元件 返回 null )
unmountComponentAtNode()
ReactDOM.unmountComponentAtNode(container) // 從 DOM 中移除已裝載的 React 元件,並清除其事件處理程式和 state 。 如果在容器中沒有掛載元件,呼叫此函式什麼也不做。 如果元件被解除安裝,則返回 true ,如果沒有要解除安裝的元件,則返回 false
findDOMNode() 不建議使用
ReactDOM.findDOMNode(component) // 如果元件已經被裝載到 DOM 中,這將返回相應的原生瀏覽器 DOM 元素。在大多數情況下,你可以繫結一個 ref 到 DOM 節點上,從而避免使用findDOMNode。
createPortal() 這個很有用處,啊啊啊!
ReactDOM.createPortal(child, container) // 建立一個 插槽(portal) 。 插槽提供了一種方法,可以將子元素渲染到 DOM 元件層次結構之外的 DOM 節點中
例項: 背景,我希望在任意頁面 點選一個按鈕,都可以開啟同一個模態框。那麼我希望只寫一個方法,其他按鈕點選觸發這個方法,這個方法會把模態框渲染。
上程式碼:
export const onpenRegistration = (props = {}) => {
const div = document.createElement(`div`) // create一個容器
const obj = { // 這個模態框還需要消失,也就是解除安裝,因此需要傳unmountComponentAtNode()方法
removeContainDiv: () => {
unmountComponentAtNode(div)
document.body.removeChild(div)
}
}
const registration = React.createElement(Notification, { ...props, ...obj }) // 這個是使用creatElement()方法,create一個react element
render(registration, div) // render第一個引數是reactElement,第二個是容器,這一步實現了在這個div容器中渲染Notification元素
document.body.appendChild(div) // 將divappend到body中
}
Notification是一個普通的react元素:
class Register extends Component {
constructor (props) {
super(props)
this.state = {
show: true
}
}
render () {
const { show } = this.state
const { removeContainDiv } = this.props
return(
<div onclick={removeContainDiv}>hshshs</div>
)
}
}
現在就可以使用onpenRegistration方法了:
import { openIndicatorRegistration } from `./indicatorRegistration` render(){ <button onClick={openIndicatorRegistration}> 開啟註冊模態框 </button> }
任何地方都可以用哦。方便吧!開心臉?
總結:
1:學習了 unmountComponentAtNode(container), 下載容器中的react元件,返回true或者false
2:學習了 render(element, container), 將react element 渲染在container中。
3:學習了 React.createElement(type, props), 這裡使用這個,就只是為了傳props。也可以使用React.cloneElement(), type可以是string:`div` `span` 或者一個react元件(class 或者function)