thinkphp 同一控制器内方法跳转
有时为了满足需要,会希望从一个控制器方法,跳转到另一个控制器方法继续执行:
1.同一控制器内跳转
$this->redirect("index", array("cate_id" => 2), 5, "页面跳转中...");
2.同一项目内跳转
$this->redirect("Index/index");
3.不同项目跳转
$this->redirect("Admin-Index/index");
参考:
thinphp手册 redirect
http://gaoke0820.blog.163.com/blog/static/21664965201211522110204/
声明:该文观点仅代表作者本人,入门客AI创业平台信息发布平台仅提供信息存储空间服务,如有疑问请联系rumenke@qq.com。
- 上一篇: thinkphp mysql 字段区间查询 根据范围筛选字段
- 下一篇:没有了