リソースグループを使用しており、このフィルターを使用してTokenMismatchException
問題を解決しています。
Route::filter('csrf', function($route, $request) {
if (strtoupper($request -> getMethod()) === 'GET') {
return;
// get requests are not CSRF protected
}
$token = $request -> ajax() ? $request -> header('X-CSRF-Token') : Input::get('_token');
if (Session::token() != $token) {
throw new Illuminate\Session\TokenMismatchException;
}
});
私のルート:
Route::group(array('prefix'=> 'admin', 'before' => 'csrf'), function(){
Route::resource('profile' , 'ProfileController', array('as'=>'profile') );
});
今。このコードのようなAjaxリクエストに対してエラーが発生します。
<script type="text/javascript">
$(document).ready(function() {
$('#frm').submit(function(e){
e.preventDefault();
name = $('#name').val();
family = $('#family').val();
email = $('#email').val();
currPassword = $('#currPassword').val();
password = $('#password').val();
password_confirmation = $('#password_confirmation').val();
$.post("{{ route('admin.profile.update', $profile->id) }}",
{
_method : 'PUT',
name : name,
family : family,
email : email,
currPassword : currPassword,
password : password,
password_confirmation : password_confirmation
},
function(data)
{
alert(data.errors.name);
},'json');
return false;
});
});
</script>
エラー:
{"error":{"type":"Illuminate\\Session\\TokenMismatchException","message":"","file":"\/var\/www\/alachiq\/app\/filters.php","line":83}}
$.post
のトークンを送信する必要があると思います。しかし、input
属性を持つname
タグを取得できません。このエラーが発生します:
TypeError: 'stepUp' called on an object that does not implement interface HTMLInputElement.
Laravelこれを行う方法に関するドキュメントにヒントがあります。これは質問の時点では利用できなかったかもしれませんが、答えで更新すると思いました。
http://laravel.com/docs/master/routing#csrf-x-csrf-token
ドキュメントからメタタグメソッドをテストし、動作させました。次のメタタグをグローバルテンプレートに追加します
<meta name="csrf-token" content="{{ csrf_token() }}">
JQueryのすべてのajaxリクエストのデフォルトを設定するこのJavaScriptを追加します。できれば、アプリ全体に含まれるjsファイルで。
$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
}
})
このトークンは、要求ヘッダーまたはフォームに存在できます。これにより、すべてのAjaxリクエストのリクエストヘッダーに入力されます。
_tokenを使用して非表示の入力を挿入し、Ajax投稿の他のフォームフィールドを取得するために後でその値を取得する必要があります。
<input type="hidden" name="_token" value="{{ csrf_token() }}" />
別の方法
ビューで、_tokenを使用してオブジェクトを設定できます
<script type="text/javascript">
var _globalObj = {{ json_encode(array('_token'=> csrf_token())) }}
</script>
その後、ajax呼び出しで、次のようにオブジェクトから_tokenを取得できます。
var token = _globalObj._token;
それをajaxの投稿に含めます。
次のコードで示したように、単純なことを行うだけです。
$.ajax({
type: 'POST',
url: 'your-post-route-url',
data: {
"_token": "{{ csrf_token() }}",
"form_data": $('#Form').serialize(),
},
success: function (data) {
console.log(data);
},
error: function (reject) {
console.log(reject);
}
});
これが隠しフィールドなしでこの問題を解決する最も簡単な方法であり、laravel 5.4バージョン:)で私のために働くことを願っています
それが役に立てば幸い。
のVerifyCsrfToken.php
ファイル内にエラーを与えるURL
protected $except = [
//
]
あなたのルートが投稿だとしましょう。このように追加するだけです
protected $except = ['post',
//
];`...
これが他の人に役立つことを願っています。
<html>
<head>
<title>Ajax Example</title>
<meta name="csrf-token" content="<?php echo csrf_token() ?>" />
<script src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js">
</script>
<script type="text/javascript">
$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
}
});
</script>
<script>
function getMessage(){
$.ajax({
type:'POST',
url:'/getmsg',
data:'_token = <?php echo csrf_token() ?>',
data:'',
success:function(data){
$("#msg").html(data.msg);
}
});
}
</script>
</head>
<body>
<div id = 'msg'>This message will be replaced using Ajax.
Click the button to replace the message.</div>
<?php
echo Form::button('Replace Message',['onClick'=>'getMessage()']);
?>
</br>
</body>
</html>
およびVerifyCsrfToken.php
ファイルはこの関数を追加します
protected function tokensMatch($request)
{
// If request is an ajax request, then check to see if token matches token provider in
// the header. This way, we can use CSRF protection in ajax requests also.
$token = $request->ajax() ? $request->header('X-CSRF-Token') : $request->input('_token');
return $request->session()->token() == $token;
}