laravel post请求中的令牌不匹配错误

当我提交表单时,我收到错误:

VerifyCsrfToken.php 第 67 行中的 TokenMismatchException:错误

我已经添加了令牌变量:

<input name="_token" value="erlhterehewfhfuetDYTewruhfekrgf" type="hidden">

还有其他解决方案吗?

http://img3.mukewang.com/62e399690001aee006580442.jpg

aluckdog
浏览 132回答 2
2回答

qq_笑_17

csrf 令牌应放在表单中。这可以通过以下方式实现:@csrf或者{!! csrf_field() !!}例子:<form method="POST" action="/profile">&nbsp; &nbsp; @csrf&nbsp; &nbsp; <input type="text" name="example" /></form>

茅侃侃

<form method="POST" action="/users">&nbsp; &nbsp; @csrf&nbsp; &nbsp; <input type="text" name="email" /></form>如需更多说明。请点击这里https://www.resourcifi.com/blog/whats-new-laravel-6-auth0/。
打开App,查看更多内容
随时随地看视频慕课网APP