對不起,如果它已被問。但是無論如何我永遠無法做到這一點。在使用laravel提交表單進行處理時,在compiled.php中使用tokenmismatchexception?
我創建了表單數據存儲到數據庫中的一個形式,下面是我創建的形式,它給了我tokenmismatchexception在compiled.php,我試圖解決的錯誤。
@extends('main')
@section('title','| Create Post')
@endsection
@section('stylesheet')
<link href="../css/parsley.css" rel="stylesheet" type="text/css">
@endsection
@section('content')
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1>Create New Post</h1>
<hr/>
<form action="{{ route('posts.store') }}" method="POST" data-parsley-validate>
<div class="form-group">
<div class="form-group">
<label name="title">Title:</label>
<input id="title" name="title" class="form-control" data-parsley-required="true" data-parsley-maxlength="255">
</div>
<div class="form-group">
<label name="body">Post Body:</label>
<textarea id="body" name="body" class="form-control" data-parsley-required="true"></textarea>
</div>
<input type="hidden" name="_token" value="{{ csrf_token() }}">
<input type="submit" class="btn btn-success btn-lg btn-block" value="Save Post">
</div>
</form>
</div>
</div>
@endsection
@section('scripts')
<script src="../js/parsley.min.js" type="text/javascript"></script>
@endsection
我曾嘗試:
1)嘗試添加隱藏字段與csrf_token
<input type="hidden" name="_token" value="{{ csrf_token() }}">
可以告訴你我們是一個例外的屏幕? – WebFreak
你使用哪個laravel版本? – manniL
,因爲我有較少的聲譽,我不能在這裏上傳圖片,但點擊這個[點擊這裏](https://postimg.org/image/y3eyhrtp3/),看到我得到的錯誤,我對第三上傳錯誤圖像派對網站。 –