在 thinkphp 3.2.3 中,在目录 ThinkPHP\Library\Think 找到 Controller.class.php 这个文件,在代码里面找到 dispatchJump 这个方法,找到 $this->assign(‘waitSecond','3');这行, 将里面的 3 改掉即可。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
if ( $status ) {
//发送成功信息
$this ->assign( 'message' , $message ); // 提示信息
// 成功操作后默认停留1秒
if (!isset( $this ->waitSecond)) $this ->assign( 'waitSecond' , '1' );
// 默认操作成功自动返回操作前页面
if (!isset( $this ->jumpUrl))
$this ->assign( "jumpUrl" , $_SERVER [ "HTTP_REFERER" ]);
$this ->display(C( 'TMPL_ACTION_SUCCESS' ));
} else {
$this ->assign( 'error' , $message ); // 提示信息
//发生错误时候默认停留3秒
if (!isset( $this ->waitSecond))
$this ->assign( 'waitSecond' , '3' );
// 默认发生错误的话自动返回上页
if (!isset( $this ->jumpUrl))
$this ->assign( 'jumpUrl' , "javascript:history.back(-1);" );
$this ->display(C( 'TMPL_ACTION_ERROR' ));
// 中止执行 避免出错后继续执行
exit ;
}
|
以上这篇Thinkphp页面跳转设置跳转等待时间的操作就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/myphp2012/article/details/78425549