在laravel5.5会报这个错误
The page has expired due to inactivity.
Please refresh and try again.
在进行post提交需要验证一个token.这个时候我们需要在表单中添加
{{ csrf_field() }}
这样就可以解决错误.也可以设置为白名单,解决这个问题.
laravel在进行post提交注意
最新推荐文章于 2022-01-25 15:53:40 发布
在laravel5.5会报这个错误
The page has expired due to inactivity.
Please refresh and try again.
在进行post提交需要验证一个token.这个时候我们需要在表单中添加
{{ csrf_field() }}
这样就可以解决错误.也可以设置为白名单,解决这个问题.