我正在尝试使用CKeditor编辑现有帖子。内容无法加载。
<div class="form-group">
<label>Content</label>
<textarea id="editor1" name="content" class="form-control" rows="3" placeholder="Enter ...">
{{ Request::old('content') }}
</textarea>
</div>
我也很难从数据库中获取日期。
<div class="input-group">
<div class="input-group-addon">
<i class="fa fa-calendar"></i>
</div>
<input type="date" name="published_at" class="form-control" value="{{ $post->published_at->format('M jS Y') }}">
</div>
答案 0 :(得分:1)
对于textarea,检查旧的输入,但是回退到默认使用模型的内容属性(帖子的内容)
<textarea ....>{!! Request::old('content', $post->content) !!}</textarea>
对于您的日期问题,我不知道您遇到了什么问题。