如何通过draft.js中的自定义文本更新editoerState

时间:2018-12-08 14:22:12

标签: javascript draftjs

我想将文件上传功能添加到我的草稿编辑器中,并且确实实现了文件上传并读取文件内容并将其保存为 redux reducer 作为文本< / strong> 但是我想知道通过该文本更新编辑器状态的简便方法是什么?

我确实尝试通过editorState属性传递文本,如下所示

<Editor
              editorState={
                this.props.fileContent !== "" ? this.props.fileContent :
                this.state.editorState }
              onChange={this.handleChange}

              readOnly={false}  
 /> 

但最终出现以下错误

  

TypeError:nextEditorState.getDirectionMap不是函数

0 个答案:

没有答案