Laravel&CKEditor-使用编辑器旧值返回

时间:2018-09-21 22:06:17

标签: laravel ckeditor

我正在验证控制器上的编辑器内容,并且如果内容长度小于30个字符,我想使用户返回到编辑器视图。无论哪种方式,这段代码:

<textarea name="text-editor" id="text-editor" value="{{ old('text-editor') }}"></textarea>

不起作用,因为CKEditor javascript脚本可以完成所有操作。那么,当用户写少于30个字符时,有没有办法放回编辑器内容?

1 个答案:

答案 0 :(得分:2)

您应该在标记之间放置旧值,因为textarea does not have value属性- <textarea name="text-editor" id="text-editor">{{ old('text-editor') }}</textarea>