我正在验证控制器上的编辑器内容,并且如果内容长度小于30个字符,我想使用户返回到编辑器视图。无论哪种方式,这段代码:
<textarea name="text-editor" id="text-editor" value="{{ old('text-editor') }}"></textarea>
不起作用,因为CKEditor javascript脚本可以完成所有操作。那么,当用户写少于30个字符时,有没有办法放回编辑器内容?
答案 0 :(得分:2)
您应该在标记之间放置旧值,因为textarea
does not have value
属性-
<textarea name="text-editor" id="text-editor">{{ old('text-editor') }}</textarea>