重定向在Laravel AppServiceProvider.php中定义的函数中不起作用
- 应用程序服务提供程序. php**
public function register()
{
require_once __DIR__ . '/../Functions/functions.php';
}
- 函数. php**
function test(){
if($x == $y){
return redirect()->route('products')->with(['type' => 'error', 'message' => 'Oops.']);
}else{
//!I don't want the code to do anything and I want it to go back to the controller and continue running.
}
1条答案
按热度按时间vlurs2pr1#
将
test()
函数与return
配合使用,以便将其重定向到您定义的路由。当您调用
test()
进行重定向时,请按以下方式记录已更新函数中的代码
根据条件返回
route or false
检查条件调用函数时更新代码