从text textarea(ckeditor)提交方程格式时的MethodNotAllowedHttpException

时间:2017-09-23 00:20:00

标签: laravel ckeditor

您好我在ckeditor提交了一个方程式并且提交了MethodNotAllowedException,虽然我的表单有方法类型的帖子和路由也发布。

以下是我的观点。

    <form class="form-horizontal" action="{{route('set-question')}}" id="submit_form" method="post">
    {{csrf_field()}}
      <div class="col-md126 col-md-9 col-md-offset-1">
         <label class="control-label">Question</label>
         <p class="help-block" style="font-size:12px;">Question is required</p>
         <textarea name="question" class="ckeditor"></textarea>
         <input type="submit" class="btn btn-success" value="Submit">            
        </div>     
      </form>

enter image description here 如果我只输入此等式或其他等式,则会出现其他问题。我通过键入其他格式保存,即使使用良好的bengali语言。贝娄是我的路线,然后我可以通过这条路线和视图保存在数据库中的排版。

Route::post('add-question','Admins\ExamController@addQuestion')->name('set-question');

成功的尝试。 enter image description here 但是在突出显示的等式或格式之后我得到了MethodNotAllowedHttpException。 请告诉我我错过了什么。 enter image description here

提前谢谢。

1 个答案:

答案 0 :(得分:0)

您可以清理缓存。因为我有时遇到这种类型的问题,在清理完我的缓存之后就没事了。 您可以尝试使用名称路径,例如:name(&#39; set.question)