本文介绍了laravel 5.8.7页面已过期(419)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在从表单提交POST请求,它显示419 |页面已过期.

I am submitting a POST request from form and it shows 419 | page expired.

Blade.php:

Blade.php:

<form action="<?php echo action('TestsController@store'); ?>" method="post">

路线:

Route::resource('tests', 'TestsController');

控制器:

public function store(Request $request) {
        echo "something something";
}

推荐答案

Laravel具有内置的CSRF保护. 查看官方文档.

Laravel has built-in CSRF protection. Check out the official documentacion.

在您的表单中添加@csrf.

<form action="<?php echo action('TestsController@store'); ?>" method="post">
    @csrf
</form>

这篇关于laravel 5.8.7页面已过期(419)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-22 15:56