react 组件被复用,componentWillMount只执
2022-06-21 本文已影响0人
黎明的叶子
不想组件复用,两种方法:
1.加key值。
2.新建元素。以iframe为例
let iframeSrc = `${window.location.origin}${api}/${projectId}`
let iframeEl = document.createElement('iframe')
iframeEl.setAttribute('src', iframeSrc)
iframeEl.style.display = 'none'
document.body.appendChild(iframeEl)