我有一个npm导入组件(CKEditor),它只关心其父组件在安装时的状态。即,无论父组件的状态发生了什么变化,如果已经安装了CKEditor,CKEditor将不会反映这些变化。
这对我来说是一个问题,因为当父组件更改其语言道具时,我需要CKEditor根据父组件的状态进行更改。
我有没有办法让子组件从父组件中卸载并再次安装?例如,有没有办法让我根据父组件的“componentWillReceiveProps”卸载并重新安装子组件?
import React from 'react';
import CKEditor from "react-ckeditor-component";
export default class EditParagraph extends React.Component {
constructor(props) {
super(props)
this.state = {
// an object that has a different html string for each potential language
content: this.props.specs.content,
}
this.handleRTEChange = this.handleRTEChange.bind(this)
this.handleRTEBlur = this.handleRTEBlur.bind(this)
}
/**
* Native React method
* that runs every time the component is about to receive new props.
*/
componentWillReceiveProps(nextProps) {
const languageChanged = this.props.local.use_lang != nextProps.local.use_lang;
if (languageChanged) {
// how do I unmount the CKEditor and remount it ???
console.log('use_lang changed');
}
}
handleRTEChange(evt) {
// keeps track of changes within the correct language section
}
handleRTEBlur() {
// fully updates the specs only on Blur
}
getContent () {
// gets content relative to current use language
}
render() {
const content = this.getContent();
// This is logging the content relative to the current language (as expected),
// but CKEditor doesn't show any changes when content changes.
console.log('content:', content);
// I need to find a way of unmounting and re-mounting CKEditor whenever use_lang changes.
return (
<div>
<CKEditor
content={content}
events={{
"blur": this.handleRTEBlur,
"change": this.handleRTEChange
}}
/>
</div>
)
}
}
答案 0 :(得分:6)
由于CKEditor仅使用&#34;内容&#34;当它安装时,我需要在父组件的local.use_lang更改时重新呈现组件。
CKEditor可以通过赋予它key
道具等于强制重新渲染的值来强制重新渲染:
<CKEditor key={this.props.local.use_lang} etc />
这样,只要语言道具发生变化,React就会创建一个新的CKEditor。
请记住,我使用了这个解决方案,因为CKEditor是我用npm安装的外部组件库。如果这是我自己编写的代码,我只会更改编辑器如何使用其道具。但是,由于我拒绝对外部库代码进行更改,因此这个解决方案允许我强制重新呈现而不必触及编辑器代码的内部。
答案 1 :(得分:0)
因为没有检测到更改,因此它不会再次调用render()
,因此不会再拨打getContent()
。
您可以做的是让内容成为状态的一部分(根据您的构造函数,已经是),如果componentWillReceiveProps()
已更新,请检入use_lang
。如果是,那么您可以通过调用this.setState({...rest, content = getContent()};
来更新那里的状态。
然后您的组件render()
功能应该如下所示
<CKEditor
content={this.state.content}
events={{
"blur": this.handleRTEBlur,
"change": this.handleRTEChange
}}
/>
(另外,通过拨打setState()
,这将触发对render()
的调用,如果检测到任何更改,则会显示更改。但请注意,这实际上并非如此&#39;重新安装组件,它只是更新视图。换句话说,在这种情况下更新状态后,componentWillMount()
和componentDidMount()
将不会被调用。相反,{{1 }}和componentWillUpdate()
将被调用)。 Read more about the component lifecycle here