2024-09-25 09:05:19 | 我爱编程网
1、thinkPHP 的Action类的redirect方法可以实现页面的重定向功能,redirect 重定向的通用语法为:edirect(url,params=array(),delay=0,msg='') // 跳转到 edit 操作 $this->redirect('edit')。
2、// 跳转到 UserAction下的edit 操作 this->redirect('User/edit'),// 跳转到 Admin分组默认模块默认操作$this->redirect('Admin/')。
3、// 跳转到 Admin分组Index模块view操作$this->redirect('Admin-Index/view'),// 跳转到 Admin分组Index模块view操作,uid参数为1,延迟3秒跳转 $this->redirect('Admin-Index/view', array('uid'=>1)。
4、同项目分组中的URL访问一样,redirect 中跨分组跳转粗基只是多了一个分组项目名称的概念,可以在 redirect 中使用路由喊拍,redirect 方法的参数用法和 U函数 的用法一致,可参考 U函数 生成岩渗谨URL地址相关部分内容。
我爱编程网(https://www.52biancheng.com)小编还为大家带来thinkphp5 redirect跳转的相关内容。
重定向
\think\Controller类的redirect方法可以实现页面的重定向功能。
redirect方法的参数用法和Url::build方法的用法一致(参考URL生成部分),例如: 我爱编程网
//重定向到News模块的Category操作$this->redirect('News/category', ['cate_id' => 2]);
上面的用法是跳转到News模块的category操作,重定向后会改变当前的URL地址。
或者直接重定向到一个指定的外部URL地址,例如:
//重定向到指定的URL地址 并且使用302$this->redirect('',302);
可以在重定向的时候通过session闪存数据传值,例如
$this->redirect('News/category', ['cate_id' => 2], 302, ['data' => 'hello']);
使用redirect助手函数还可以实现更多的功能,例如可以记住当前的URL后跳转
redirect('News/category')->remember();
需要跳转到上次记住的URL的时候使用:
redirect()->restore();
参考手册: thinkphp重定向
以上,就是我爱编程网小编给大家带来的php中怎么用redirect实现页面跳转?全部内容,希望对大家有所帮助!更多相关文章关注我爱编程网:www.52biancheng.com2025-02-01 20:24:39
2024-01-05 14:11:24
2025-02-12 03:21:37
2025-02-10 15:19:48
2025-01-28 17:58:32
2024-11-22 05:08:01