Home > Backend Development > PHP Tutorial > thinkPHP 的跳转页面的 中转 页面的 $msgTitle 怎么设置?

thinkPHP 的跳转页面的 中转 页面的 $msgTitle 怎么设置?

WBOY
Release: 2016-06-06 20:06:12
Original
1475 people have browsed it

<code>假设跳转一个页面:

$this->success($info, $taobao,5);

在模版*.html页面中

$message 我知道,就是 上面的 $info;
$waitSecond 就是上面 5
$jumpUrl 就是上面的 $taobao

这个 $msgTitle 这个在哪设置呢?
</code>
Copy after login
Copy after login

回复内容:

<code>假设跳转一个页面:

$this->success($info, $taobao,5);

在模版*.html页面中

$message 我知道,就是 上面的 $info;
$waitSecond 就是上面 5
$jumpUrl 就是上面的 $taobao

这个 $msgTitle 这个在哪设置呢?
</code>
Copy after login
Copy after login

可以这样操作:

<code>$this->assign('msgTitle','操作成功...');
$this->success($info, $taobao,5);</code>
Copy after login

查看源码

<code>$this->assign('msgTitle',$status? L('_OPERATION_SUCCESS_') : L('_OPERATION_FAIL_'));</code>
Copy after login

所以有两种方式:

  1. 临时对翻译赋值:L('msgTitle','标题');

  2. 修改翻译配置文件

参考手册

Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template