thinkphp 中定制success和error提示跳转页面

本文介绍了如何在ThinkPHP框架中定制success和error提示页面,通过修改配置并创建自定义模板文件,实现了更美观的页面效果。详细步骤包括在home模块下创建Tpl文件夹,存放模板文件,并展示了错误和成功页面的截图及HTML代码。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

在thinkphp中用到$this->success()和$this->error()函数,但是这两个页面太丑,所以需要自定义一下

首先要修改配置



        'TMPL_ACTION_ERROR'=>'Tpl/myerror',
        'TMPL_ACTION_SUCCESS'=>'Tpl/mysuccess',

在这里需要注意的是页面路径,该路径在模块(分组)下面的        文件夹/文件名

如我文件路径所示


如图,我在home模块下建立了Tpl文件夹,里面放我的模板文件


错误页面效果如图所示



正确页面如下图


页面html代码如下

<?php
    if(C('LAYOUT_ON')) {
        echo '{__NOLAYOUT__}';
    }
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="textml; charset=utf-8" />
<title>跳转提示</title>
<style type="text/css">
*{ padding: 0; margin: 0; }
body{ background: #fff; font-family: '微软雅黑'; color: #333; font-size: 16px; }
.system-message{ padding: 24px 48px; text-align: center;margin-top: 100px;}
.system-message h1{ font-size: 100px; font-weight: normal; line-height: 120px; margin-bottom: 12px; }
h1 img{width: 100px;}
.system-message .jump{ padding-top: 10px}
.system-message .jump a{ color: #333;}
.system-message .success,.system-message .error{ line-height: 1.8em; font-size: 18px }
.system-message .detail{ font-size: 12px; line-height: 20px; margin-top: 12px; display:none}
.tiao{margin-top: 40px}
.tiao a{font-size: 16px;color: #fff;border-radius: 4px;background-color: #0d65a3;padding: 6px 16px;text-decoration: none;}
</style>
</head>
<body>
<div class="system-message">
<h1><img src="__HOMERESOURCE__/images/HchuanT_06.png"></h1>
<p class="error"><?php echo($error); ?></p>
<p class="detail"></p>
<p class="jump">
页面自动跳转 等待时间: <b id="wait"><?php echo($waitSecond); ?></b>
</p>
<p class="tiao"><a id="href" href="<?php echo($jumpUrl); ?>">点击跳转</a></p>
</div>
<script type="text/javascript">
(function(){
var wait = document.getElementById('wait'),href = document.getElementById('href').href;
var interval = setInterval(function(){
	var time = --wait.innerHTML;
	if(time <= 0) {
		location.href1 = href;
		clearInterval(interval);
	};
}, 1000);
})();
</script>
</body>
<html>

页面由公司前端所写,特别感谢


又需要的可以直接使用





评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值