ThinkPHP3.1.x修改成功与失败跳转页面的方法
程序员文章站
2024-01-01 21:49:34
本文实例讲述了thinkphp3.1.x修改成功与失败跳转页面的方法。分享给大家供大家参考,具体如下:
在thinkphp中,成功与失败的提示页面已经自带。在action...
本文实例讲述了thinkphp3.1.x修改成功与失败跳转页面的方法。分享给大家供大家参考,具体如下:
在thinkphp中,成功与失败的提示页面已经自带。在action方法中自动调用即可。
比如在lib\action有如下的sucerraction.class.php:
<?php class sucerraction extends action{ public function index(){ $this->display(); } public function success1(){ $this->success("成功提醒!",u("sucerr/index"),3); } public function error1(){ $this->error("错误提醒!",u("sucerr/index"),3); } } ?>
在tpl中有sucerr文件夹,里面有index.html如下:
<!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="text/html; charset=utf-8" /> <title>成功与错误页面</title> </head> <body> <button onclick="javascript:window.location.href='__app__/sucerr/success1'">成功页面</button> <button onclick="javascript:window.location.href='__app__/sucerr/error1'">错误页面</button> </body> </html>
仅摆放两个按钮,用于展示成功与失败的提示页面,提示页面仅维持3秒就会自动跳转。
其中请注意,在sucerraction.class.php中,不能自己定义success方法与error方法,此乃系统的action抽象内中固有的方法, 声明success方法与error方法则是继承后重写,会使thinkphp运行部正常。
不过,系统自带的成功与失败的提示页面并不能够满足网站的需要,
但是这个页面可以自己修改,比如上图,我就自己在这成功与失败的跳转页面上,添加了一点文字。
此页面的具体位置在:.\thinkphp\tpl\dispatch_jump.tpl
我就在第18行的位置写上一些字达到上图的效果,此页面大家可以根据自己的需要写任意前端语言,在thinkphp方法的$this->success()
或者$this->error()
都会跳转到这个页面。
更多关于thinkphp相关内容感兴趣的读者可查看本站专题:《thinkphp入门教程》、《thinkphp模板操作技巧总结》、《thinkphp常用方法总结》、《codeigniter入门教程》、《ci(codeigniter)框架进阶教程》、《zend framework框架入门教程》及《php模板技术总结》。
希望本文所述对大家基于thinkphp框架的php程序设计有所帮助。