我从我的API中获得了一个HTML字符串:"consigne": "<p>test</p>\n"
,并希望在编辑器中显示它。
我的编辑是:
<Editor id="consigne" name= "consigne" editorState={consigne} value={draftToHtml(convertToRaw(consigne.getCurrentContent()))} onEditorStateChange={(consigne) => {this.setState({consigne})} localization={{ locale: 'fr' }}/>
我想将此收货人插入我的编辑器中。
我如何将此收货人推送给我的编辑?
我是这样找到的:
this.setState({
consigne:EditorState.createWithContent(ContentState.createFromBlockArray(convertFromHTML(plan.consigne)))
})