Home> PHP Framework> ThinkPHP> body text

ThinkPHP custom success and error jump pages

angryTom
Release: 2020-03-07 10:34:57
forward
3602 people have browsed it

This article introduces the method of customizing success and error jump pages in thinkphp5. It has certain reference value. I hope it will be helpful to friends who are learning the thinkphp framework!

ThinkPHP custom success and error jump pages

ThinkPHP custom success and error jump page

The jump template settings defined in thinkphp5 are in the directory It is defined by application\config.php and also defines the jump template file by default. The following is the code in config.php.

// 默认跳转页面对应的模板文件 'dispatch_success_tmpl' => THINK_PATH . 'tpl' . DS . 'dispatch_jump.tpl', 'dispatch_error_tmpl' => THINK_PATH . 'tpl' . DS . 'dispatch_jump.tpl',
Copy after login

(Recommended tutorial:thinkphp tutorial)

With the above definition settings, we can quickly find the actual location of the default template, in the core file directory thinkphp\tpl \dispatch_jump.tpl. First, we want to customize the jump template file. We have two ideas. The first idea is that the template file should not be set, that is, delete the original content of the above thinkphp\tpl\dispatch_jump.tpl file and change it to Our own file contents. Another way of thinking is that we redefine the location of the jump file. We usually redefine dispatch_success_tmpl and dispatch_error_tmpl in the config folder under which project we need to jump. Here I take the admin project as an example. Its configuration file application\admin\config.php is defined as follows

 [ 'type' => 'bootstrap3', 'var_page' => 'page', 'list_rows' => 15, ], // 默认跳转页面对应的模板文件 'dispatch_success_tmpl'=>'public:dispatch_jump', 'dispatch_error_tmpl'=>'public:dispatch_jump', // 'dispatch_success_tmpl' => THINK_PATH . 'tpl' . DS . 'dispatch_jump.tpl', // 'dispatch_error_tmpl' => THINK_PATH . 'tpl' . DS . 'dispatch_jump.tpl', ];
Copy after login

After the above definition and setting, the jump template file is in application\admin\view\public\dispatch_jump.html , the above is the setting method of thinkphp5, but thinkphp3.2 is different from this. The template path in 3.2 is different. If you want to set it up separately in a certain project directory, you must first create the conf folder and then create config in it. .php file, the following is the code of the default settings file in ThinkPHP\Conf\convention.php

/* 模板引擎设置 */ 'TMPL_CONTENT_TYPE' => 'text/html', // 默认模板输出类型 'TMPL_ACTION_ERROR' => THINK_PATH.'Tpl/dispatch_jump.tpl', // 默认错误跳转对应的模板文件 'TMPL_ACTION_SUCCESS' => THINK_PATH.'Tpl/dispatch_jump.tpl', // 默认成功跳转对应的模板文件
Copy after login

The last thing to note is that if the smart template engine is used, the For this, we just replace it with {$jumpUrl}. If it is thinkphp5, just change it to {url}.

For more thinkphp tutorials, please pay attention toPHP Chinese website!

The above is the detailed content of ThinkPHP custom success and error jump pages. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:www.100txy.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!