欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

Laravel5 开启关闭 CSRF token 方法

程序员文章站 2024-02-17 22:46:40
...
所有页面开启和关闭CSRF 参考:http://www.cnblogs.com/HD/p/4555369.html

部分页面不需要使用CSRF

/*** 指定页面不开启CSRF* @var string*/    private $openRoutes = ['test/url'];    /*** Handle an incoming request.* @param \Illuminate\Http\Request  $request* @param \Closure  $next* @return mixed*/public function handle($request, Closure $next){    if (in_array($request->path(), $this->openRoutes)) {       return $next($request);   }   return parent::handle($request, $next);}