thinkphp 页面跳转
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkphp 页面跳转相关的知识,希望对你有一定的参考价值。
if(empty($_POST['username']))
$this->error('必须输入用户名');
else
if(!empty($_POST['password']))
$this->success('数据库正常!');
$this->redirect("index/login");
if(empty($_POST['password']))
$this->error('用户名或密码错误');
因我在在login页面使用Ajax 获取后台值
$this->redirect("index/index"); 无法实现页面跳转了?
请问该如何处理!求解
TP模板中用ajax传输数据就不可以用重定向函数redirect
还有你这后端代码写得有点迷啊?
前端jquery代码例
$.ajax( url: "<:U('Login/logindo)>", data:'name':"张三",'password':"密码", success: function(data)if(data.code=="200")
alert(data.info);
location.href=(<:U('index/index')>);
else if(data.code=="500")
alert(data.info);
<!--刷新页面-->
location.reload();
else
alert("服务器链接失败!");
);
后端代码例
if(!I('post.name')||!I('post.password')))$data['code']='500';
$data['info']='账号和密码不能为空';
elseif(M("user"->where(array('username'=>I('post.name'),'password'=>I('post.password')))->find()))
$data['200']="200";
$data['info']="登陆成功";
return $data; 参考技术A 如果你是使用ajax获取值,那么请在当前页使用js进行重定向。具体代码,就不用贴了吧。。 参考技术B Action 类的 redirect 方法可以实现页面的重定向功能。
redirect 方法的参数用法和 U 函数的用法一致(参考上面的 URL 生成部分),例如:
$this->redirect('User/list', array('cate_id'=>2), 5,' 页面跳转中 ~')
上面的用法是停留 5 秒后跳转到 User 模块的 list 操作,并且显示页面跳转中字样,重定向后会改变当前的 URL 地址。本回答被提问者和网友采纳 参考技术C onclick="this.select()" value="请填写用户名" 参考技术D
$.ajax( url: "<:U('Login/logindo)>", data:'name':"张三",'password':"密码", success: function(data) if(data.code=="200") alert(data.info); location.href=(<:U('index/index')>); else if(data.code=="500") alert(data.info); <!--刷新页面--> location.reload(); else alert("服务器链接失败!"); );
//php君羊(516567095)
thinkphp5 三种重定向(跳转)
页面跳转
在应用开发中,经常会遇到一些带有提示信息的跳转页面,例如操作成功或者操作错误页面,并且自动跳转到另外一个目标页面。系统的\think\Controller
类内置了两个跳转方法success
和error
,用于页面跳转提示。
使用方法很简单,举例如下:
namespace app\index\controller;
use think\Controller;
use app\index\model\User;
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方法的默认跳转地址是$_SERVER["HTTP_REFERER"]
,error方法的默认跳转地址是javascript:history.back(-1);
。
默认的等待时间都是3秒
success
和error
方法都可以对应的模板,默认的设置是两个方法对应的模板都是:
THINK_PATH . ‘tpl/dispatch_jump.tpl‘
我们可以改变默认的模板:
//默认错误跳转对应的模板文件
‘dispatch_error_tmpl‘ => APP_PATH . ‘tpl/dispatch_jump.tpl‘,
//默认成功跳转对应的模板文件
‘dispatch_success_tmpl‘ => APP_PATH . ‘tpl/dispatch_jump.tpl‘,
也可以使用项目内部的模板文件
//默认错误跳转对应的模板文件
‘dispatch_error_tmpl‘ => ‘public/error‘,
//默认成功跳转对应的模板文件
‘dispatch_success_tmpl‘ => ‘public/success‘,
模板文件可以使用模板标签,并且可以使用下面的模板变量:
变量 | 含义 |
---|---|
$data | 要返回的数据 |
$msg | 页面提示信息 |
$code | 返回的code |
$wait | 跳转等待时间 单位为秒 |
$url | 跳转页面地址 |
error方法会自动判断当前请求是否属于
Ajax
请求,如果属于Ajax
请求则会自动转换为default_ajax_return
配置的格式返回信息。 success在Ajax
请求下不返回信息,需要开发者自行处理。重定向
\think\Controller
类的redirect
方法可以实现页面的重定向功能。redirect方法的参数用法和
Url::build
方法的用法一致(参考URL生成部分),例如:
//重定向到News模块的Category操作 $this->redirect(‘News/category‘, [‘cate_id‘ => 2]);
上面的用法是跳转到News模块的category操作,重定向后会改变当前的URL地址。
或者直接重定向到一个指定的外部URL地址,例如:
//重定向到指定的URL地址 并且使用302 $this->redirect(‘http://thinkphp.cn/blog/2‘,302);
可以在重定向的时候通过session闪存数据传值,例如
$this->redirect(‘News/category‘, [‘cate_id‘ => 2], 302, [‘data‘ => ‘hello‘]);
使用redirect助手函数还可以实现更多的功能,例如可以记住当前的URL后跳转
redirect(‘News/category‘)->remember();
需要跳转到上次记住的URL的时候使用:
redirect()->restore();
以上是关于thinkphp 页面跳转的主要内容,如果未能解决你的问题,请参考以下文章