react-quill富文本出错

今天把富文本做进表单的时候,一直报这个错

You are passing the `delta` object from the `onChange` event back as `value`.

搞了半天查错,原来是接口里面,对应表单key没有对应上,接口里面没有这个字段。

{getFieldDecorator('order_desc',{initialValue:formVals.order_desc,})(
          <ReactQuill 
           theme="snow"
           modules={modules}
           formats={formats}
           placeholder="客户留言:无"
           style={{'height':'200px','width':'100%'}}
  />
 )}

我觉得应该formVals.order_desc为undefined,然后你塞数据的时候出错。

posted @ 2019-04-29 10:31  LeeJuly  阅读(1647)  评论(0)    收藏  举报