今天工作中使用了這個,感覺很好用啊! 首先: 這個ReactDom是幹嘛用的? 答: react-dom 包提供了 DOM 特定的方法,可以在你的應用程式的頂層使用,如果你需要的話,也可以作為 React模型 之外的特殊操作DOM的介面。 但大多數組件應該不需要使用這個模塊。 其次: 如何引用? 答 ...
今天工作中使用了這個,感覺很好用啊!
首先: 這個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> }
任何地方都可以用哦。方便吧!開心臉