2
私はLaravel 5.2を使用していて、UniSharp/laravel-ckeditorパッケージを使用してプロジェクトにckeditorを実装しています。すべて正常に動作するようです。しかし、ckeditor入力フィールドのデータを送信すると、他の入力フィールドのデータが正常に動作しています.ckeditorの代わりに通常のテキスト領域を使用すると、正常に動作しています。私の見解ではLaravel ckeditorデータがデータベースに挿入されない
フォーム:
{{Form::open(array('url'=>'gettopics'))}}
<input type="text" name="title" class="form-control"/>
**<input type="textarea" name="detail" id="article-ckeditor">**
{{Form::close()}}
<script>
CKEDITOR.replace('article-ckeditor');
</script>
ルート:
Route::post('gettopics','[email protected]');
コントローラー:
public function gettopics(Request $request){
$topic=new Topic;
$topic->title=$request->Input('title');
$topic->detail=$request->Input('detail');
$topic->save();
}
これはうまくいきます。ありがとうございます。しかし、私のページにデータを表示するにはどうすればいいですか?正常な手順は機能していません。 –
通常の手順ではどういう意味ですか? '{{$ topic-> detail}}'? –
はい。{{$ topic-> detail}}を使用すると、それは変です。
–