hahadu / think-jump-class
基于thinkphp6的页面跳转模块
Installs: 143
Dependents: 3
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Open Issues: 0
Type:think-extend
Requires
- php: >=7.1
- topthink/think-view: >=1.0
Requires (Dev)
- php: >=7.1
README
基于thinkphp6的页面跳转模块
安装:composer require hahadu/think-jump-class
- 支持自定义状态码
- 支持layer弹窗自动关闭
- 兼容tp旧版本的跳转写法($this->success)
更新:
11.10更新:
- 新增ajax返回
- 修复配置模板文件无效
- 新增快捷函数jump_page();
10.15更新:
- V3.0版
-
- 1、新增:自定义http_response_code
-
- 2、新增:自定义title
-
- 3、新增:Exception
-
- 4、修复:mysql保留关键字冲突
使用:
$code = 1; return \Hahadu\ThinkJumpPage\JumpPage::jumpPage($code,'/index',3);
或者:
return \Hahadu\ThinkJumpPage\JumpPage::jumpPage($code,$url,$wait_second)->send();
或者使用快捷函数
jump_page($code); //或者jump_page($code)->send();
jumpPage()有三个参数
第一个参数是页面状态码
第二个参数是跳转的URL,为空默认为默认应用的url,如果是站内跳转的默认跳转回上一页
第三个参数是等待时间(秒),默认为’wait_second‘的值
配置
自定义跳转模板
- 自定义跳转模板文件:comopser安装后会自动在config生成一个jumpPage.php的配置文件
- 或者复制src/config目录下jumpPage.php到应用目录下
- 修改JumpPage中的'dispatch_tpl'值为你的配置文件路径即可
配置ajax
//是否开启ajax返回 true 开启/ false关闭 'ajax'=>true, //支持json|jsonp|xml3种类型、开启ajax有效 'ajax_type'=> 'json',
完整的配置文件
<?php //config/jumpPage.php return [ //是否开启ajax返回 true 开启/ false关闭 'ajax'=>true, //支持json|jsonp|xml3种类型、开启ajax有效 'ajax_type'=> 'json', //自定义跳转模板文件路径 ,开启ajax自动失效 'dispatch_tpl' => 'you_jump_tpl_path.tpl' , ];
创建跳转状态码数据表:
delete_time需要根据你的软删除设置DEFAULT值
--
-- 表的结构 `status_code`
--
CREATE TABLE `status_code` (
`id` int(11) NOT NULL,
`code` int(32) NOT NULL COMMENT '页面查询状态码',
`status` int(10) NOT NULL DEFAULT 1 COMMENT '状态1:success,0:error',
`message` varchar(50) NOT NULL COMMENT '页面状态说明',
`title` varchar(200) DEFAULT ':(' COMMENT '页面h1内容',
`response_code` int(10) DEFAULT 301 COMMENT '页面跳转码http_response_code',
`wait_second` int(20) NOT NULL DEFAULT 3 COMMENT '跳转等待时间',
`delete_time` int(32) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='状态码';
-
兼容thinkPHP旧版本的$this->success(),$this->error()等方法:
-
在需要跳转的控制器中引入’\Hahadu\ThinkJumpPage\TraitJump‘:
namespace app\controller;
class HomeNavController extends AdminBaseController
{
use \Hahadu\ThinkJumpPage\TraitJump; //引入TraitJump
public function index (){
$this->success('操作成功','/index/index');
}
}