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

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

WBOY
WBOYOriginal
2016-06-06 20:06:121451browse

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

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

在模版*.html页面中

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

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

回复内容:

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

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

在模版*.html页面中

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

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

可以这样操作:

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

查看源码

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

所以有两种方式:

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

  2. 修改翻译配置文件

参考手册

Statement:
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