如何使用React-draft-wysiwyg和js草稿将html进行草稿?

时间:2019-11-06 11:30:46

标签: html reactjs editor draftjs react-draft-wysiwyg

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

我要在我的编辑器中插入此收货人。

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

1 个答案:

答案 0 :(得分:0)

我是这样找到的:

  this.setState({ 
consigne:EditorState.createWithContent(ContentState.createFromBlockArray(convertFromHTML(plan.consigne))) 
    })