- 论坛徽章:
- 0
|
做了一个insert产生的数组。只要是为了是动态的内容,不能被缓存才使用insert了。
如果在模版文件里面遍历这个输出结果呢?
insert函数返回的数组是这样的
Array
(
[0] => Array
(
[id] => 224
[folder_name] => 文件夹1
)
[1] => Array
(
[id] => 225
[folder_name] => 文件夹2
)
[2] => Array
(
[id] => 226
[folder_name] => 文件夹3
)
)
模版文件怎么写呢?
{insert name="folder_list"}可以获得这个数组。显示是Array,但是具体怎么显示其中的内容呢?
我用foreach和section都没写对。
能给下代码么?我尝试了下面的写法不能显示任何输出
{insert name="folder_list" assign="folder_list"}
<p>
{section name=folder loop=$folder_list}
id: {$folder_list[folder].id}<br>
name: {$folder_list[folder].folder_name}<br>
<p>
{/section}
不能输出是有缘故的,因为这种写法仅当 $smarty->caching = false; 才输出
说明看手册
If you supply the "assign" attribute, the output of the insert tag will be assigned to this template variable instead of being output to the template. NOTE: assigning the output to a template variable isn't too useful with caching enabled.
详细的看断点调试吧
手册的这种smarty_block_dynamic方法更灵活,实现的就是你想要的MV分离
index.php:
- require('Smarty.class.php');
- $smarty = new Smarty;
- $smarty->caching = true;
- function smarty_block_dynamic($param, $content, &$smarty) {
- return $content;
- }
- $smarty->register_block('dynamic', 'smarty_block_dynamic', false);
- $smarty->display('index.tpl');
复制代码
index.tpl:
- Page created: {"0"|date_format:"%D %H:%M:%S"}
- {dynamic}
- Now is: {"0"|date_format:"%D %H:%M:%S"}
- ... do other stuff ...
- {/dynamic}
复制代码
文档里面说{insert name="getBanner" lid=#banner_location_id# sid=#site_id#}
相当于访问函数insert_getBanner(array("lid" => "12345","sid" => "67890"));
怎么写代码在函数里面获得lid和sid的值呢?
不大清楚你说的代码指的是什么,按我的理解可以这么写:
模板里面index.html
{config_load file="foo.conf"}
{insert name="getBanner" lid=#banner_location_id# sid=#site_id#}
配置文件foo.conf
banner_location_id = 546
site_id = 12
php程序
function insert_getBanner($params)
{
if($params["lid"] && $params["sid"]) {
//do something
}
return $result;
}
$smarty->display('index.html'); |
|