我从我的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' }}/>
我要在我的编辑器中插入此收货人。
我如何将收货人推送给我的编辑?
答案 0 :(得分:0)
我是这样找到的:
this.setState({
consigne:EditorState.createWithContent(ContentState.createFromBlockArray(convertFromHTML(plan.consigne)))
})