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,然后你塞数据的时候出错。
本文来自博客园,作者:LeeJuly,转载请注明原文链接:https://www.cnblogs.com/peterleee/p/10788945.html