我有一个IFrameComponent
组件,受这篇文章的启发。
它看起来基本上是这样的:
class IFrameComponent extends React.Component {
shouldComponentUpdate() {
return false;
}
componentWillReceiveProps(nextProps) {
if(this.props.content !== nextProps.content) {
const html = getHTMLFromContent();
const fdoc = this.iFrame.contentDocument;
fdoc.write(html);
}
}
render() {
return (<iframe sandbox="..." ref={f => this.iFrame = f} />);
}
}
现在这componentWillReceiveProps
被认为是不安全的,我正试图摆脱它。
React 建议重构 componentWillReceiveProps的方式基本上要么使用static getDerivedStateFromProps
要么componentDidUpdate
可悲的是,componentDidUpdate
永远不会被调用,因为shouldComponentUpdate
返回 false (我认为这很好?)而且我无法在静态方法中访问 this.iFrame 引用getDerivedStateFromProps
。
如何重构这段代码?