php 在验证请求时出错后覆盖默认重定向回路由

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 在验证请求时出错后覆盖默认重定向回路由相关的知识,希望对你有一定的参考价值。

<?php

class TestRequestController extends Controller;
{

protected function getRedirectUrl() {
      return '/#s5'; //route; #s5 is the id of a section as example. may use just the route only
    }
    
public function store(Request $request) {
  $this->validate($request, [
    bla bla bla
  ]);
}

    
}

以上是关于php 在验证请求时出错后覆盖默认重定向回路由的主要内容,如果未能解决你的问题,请参考以下文章

注销后重定向[关闭]

RouterBrowser 不会在刷新时重定向到默认页面

KeyCloak 在身份验证代码流错误后重定向回身份提供者

身份验证后如何将用户重定向回同一页面?

用户接受权限后重定向回应用程序 Oauth2

在laravel中发布请求后如何重定向回上一页?