我正在使用资源组并使用此过滤器来解决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:
{"error":{"type":"Illuminate\\Session\\TokenMismatchException","message":"","file":"\/var\/www\/alachiq\/app\/filters.php","line":83}}
我想我必须在$.post
发送_token。但我无法使用input
属性获取name
标记。我发现了这个错误:
TypeError: 'stepUp' called on an object that does not implement interface HTMLInputElement.
答案 0 :(得分:48)
Laravel文档中有关于如何执行此操作的提示。这可能在提出问题时尚未提供,但我想我会用答案更新它。
http://laravel.com/docs/master/routing#csrf-x-csrf-token
我已经从文档中测试了元标记方法并使其正常工作。将以下元标记添加到您的全局模板
中<meta name="csrf-token" content="{{ csrf_token() }}">
添加此JavaScript,为jQuery中的所有ajax请求设置默认值。最好是在您的应用中包含的js文件中。
$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
}
})
此标记可以存在于请求标头或表单中。这会将其填充到每个ajax请求的请求标头中。
答案 1 :(得分:13)
您必须使用_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帖子中。
答案 2 :(得分:10)
就像我在下面的代码中所显示的那样简单,
$.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版本中适用于我:)
希望它有所帮助。
答案 3 :(得分:3)
你也可以在
中的VerifyCsrfToken.php
文件中添加给你错误的网址
protected $except = [
//
]
我们说你的路线是邮寄的。您可以像这样添加
protected $except = ['post',
//
];`...
希望这有助于其他人。
答案 4 :(得分:1)
<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;
}