laravel5.6 提示The page has expired due to inactivity. Please refresh and try again.的解决方法

post提交数据时候显示如下:

The page has expired due to inactivity. 

Please refresh and try again

这是由于在laravel框架中有此要求:任何指向 web 中 POST, PUT 或 DELETE 路由的 HTML 表单请求都应该包含一个 CSRF 令牌,否则,这个请求将会被拒绝。

<form method="POST" action="/profile">
{{ csrf_field() }}
    ...
</form>

猜你喜欢

转载自blog.csdn.net/loverzai/article/details/81612805
今日推荐