如何通过html-react-draft-wysiwyg和js草稿推送html进行草稿?

问题描述 投票:1回答:1

我从我的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' }}/>

我想将此收货人插入我的编辑器中。

我如何将此收货人推送给我的编辑?

html reactjs editor draftjs react-draft-wysiwyg
1个回答
0
投票

我是这样找到的:

  this.setState({ 
consigne:EditorState.createWithContent(ContentState.createFromBlockArray(convertFromHTML(plan.consigne))) 
    })
© www.soinside.com 2019 - 2024. All rights reserved.