开启辅助访问
帐号登录 |立即注册

Thinkphp5中的页面重定向的设置

 
页面跳转在TP5的应用开发中,经常会遇到一些带有提示信息的跳转页面,例如操作成功或者操作错误页面,并且自动跳转到另外一个目标页面。系统的 \think\Controller 类内置了两个跳转方法 success() 和 error (),用于页面跳转提示。使用方法很简单,举例如下:
[PHP] 纯文本查看 复制代码
<?php
namespace app\index\controller;
use app\index\model\User;
use think\Controller;
class Index extends Controller
{
public function index()
{
$User = new User; //实例化User对象
$result = $User->save($data);
if ($result) {
//设置成功后跳转页面的地址,默认的返回页面是$_SERVER['HTTP_REFERER']
$this->success('新增成功', 'User/list');
} else {
//错误页面的默认跳转页面是返回前一页,通常不需要设置
$this->error('新增失败');
}
}
}

success 和 error 方法都可以对应的模板,默认的设置是两个方法对应的模板都是:
'thinkphp/tpl/dispatch_jump.tpl'


我们可以改变默认的模板:
//默认错误跳转对应的模板文件
'dispatch_error_tmpl' => '../application/tpl/dispatch_jump.tpl',
//默认成功跳转对应的模板文件
'dispatch_success_tmpl' => '../application/tpl/dispatch_jump.tpl',


也可以使用项目内部的模板文件
//默认错误跳转对应的模板文件
'dispatch_error_tmpl' => 'public/error',
//默认成功跳转对应的模板文件
'dispatch_success_tmpl' => 'public/success',


重定向
\think\Controller 类的 redirect 方法可以实现页面的重定向功能。
例如://重定向到News模块的Category操作
$this->redirect('News/category', ['cate_id' => 2]);
上面的用法是跳转到News模块的category操作,重定向后会改变当前的URL地址。或者直接重定向到一个指定的外部URL地址,例如:
//重定向到指定的URL地址 ,并且使用302
$this->redirect('http://thinkphp.cn/blog/2',302);
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

友情链接
  • 艾Q网

    提供设计文章,教程和分享聚合信息与导航工具,最新音乐,动漫,游戏资讯的网站。