当前位置:首页 > CMS教程 > Thinkphp > 列表

ThinkPHP5.1框架页面跳转及修改跳转页面模版示例

发布:smiling 来源: PHP粉丝网  添加日期:2021-11-21 17:30:00 浏览: 评论:0 

本文实例讲述了ThinkPHP5.1框架页面跳转及修改跳转页面模版,分享给大家供大家参考,具体如下:

对应的控制器 创建对应的HTML

比如:

admin(模块)/lpp(控制器)/index(方法)

对应的html文件:

view->lpp->index.html

1.index.html布局

  1. <form action="{:url('bbc')}" method="post"
  2. <h3>用户登录界面</h3> 
  3. <p>UserName: 
  4. <input name="username" type="text" id="001"/> 
  5.  </p> 
  6. <p>PassWord: 
  7.   <input name="password" type="password" id="002"/> 
  8. </p> 
  9. <p> 
  10.   <input type="submit" value="登录"/> 
  11.   <input type="reset" value="取消"
  12. </p> 
  13. </form> 

2.index()方法:

  1. public function index(){ 
  2.   //加载页面 
  3.   return view(); 

index.html输入内容后跳转处理数据的方法

  1. //跳转后处理的方法 
  2. public function bbc(){ 
  3.   //接受数据 (在URL中不可以被别人看见) 
  4.   $username = $_POST['username']; 
  5.   $password = $_POST['password']; 
  6.   //判断输入的信息 
  7.   if ($username == 'admin' && $password == 'admin'){ 
  8.     //跳转地址未设置时,默认返回上一个页面 
  9.     $this->success('登录成功!','Index/diaoyong'); 
  10.   }else
  11.     $this->error('信息有误!'); 
  12.   } 

3.修改跳转页面的模版

a、在app.php文件里面找到设置模版位置

b、文件目录

C:\wamp\www\tp5\thinkphp\tpl\dispatch_jump.tpl

c、跳转方法给模版页面的数据

  1. echo $code."<hr>"; --返回的状态码 1成功 0失败 
  2. echo $msg."<hr>";  --页面的提示信息 
  3. echo $wait."<hr>"; --等待的时间 
  4. echo $url."<hr>";  --制定跳转页面 默认返回上一个页面 
  5. echo $data."<hr>"; --用户返回的数据 

d、跳转页面模版修改

C:\wamp\www\tp5\thinkphp\tpl\dispatch_jump.tpl

  1. <?php switch ($code) {?> 
  2.   <?php case 1:?> 
  3.   <img src="/static/xiao.jpg" alt=""
  4.   <h1>:)</h1> 
  5.   <p class="success"><?php echo(strip_tags($msg));?></p> 
  6.   <?php break;?> 
  7.   <?php case 0:?> 
  8.   <img src="/static/ku.jpg" alt=""
  9.   <h1>:(</h1> 
  10.   <p class="error"><?php echo(strip_tags($msg));?></p> 
  11.   <?php break;?> 
  12. <?php } ?> 

图片位置:/static/xiao.jpg 和 /static/ku.jpg

e、自建模版

success.tpl

error.tpl

例如:error.tpl

  1. <!DOCTYPE html> 
  2. <html lang="en"
  3. <head> 
  4. <meta charset=utf-8" /> 
  5. <title>错误!</title> 
  6. <link rel="stylesheet" href="http://libs.baidu.com/bootstrap/3.0.3/css/bootstrap.min.css" rel="external nofollow" > 
  7. </head> 
  8. <body> 
  9.     <div class="container"
  10.     <div class="col-md-4"></div> 
  11.     <div class="col-md-4"
  12.     <div class="panel panel-primary"
  13.       <div class="panel-heading"
  14.         <?php echo $msg?> 
  15.       </div> 
  16.       <div class="panel-body"
  17.         <img src="/static/ku.jpg" alt="" width="100%"
  18.       </div> 
  19.       <div class="panel-footer"
  20.         <p class="jump"
  21.           页面自动 <a id="href" href="<?php echo($url);?>" rel="external nofollow" >跳转</a> 等待时间: <b id="wait"><?php echo($wait);?></b> 
  22.         </p> 
  23.       </div> 
  24.     </div> 
  25.   </div> 
  26.   </div> 
  27.   <script type="text/javascript"
  28.   (function(){ 
  29.     var wait = document.getElementById('wait'), 
  30.       href = document.getElementById('href').href; 
  31.     var interval = setInterval(function(){ 
  32.       var time = --wait.innerHTML; 
  33.       if(time <= 0) { 
  34.         location.href = href; 
  35.         clearInterval(interval); 
  36.       }; 
  37.     }, 1000); 
  38.   })(); 
  39.   </script> 
  40. </body> 
  41. </html> 

图片预览:

ThinkPHP5.1页面跳转

Tags: ThinkPHP5 1页面跳转

分享到: