|
本帖最后由 longjianghu 于 2009-11-20 22:47 编辑
比如我写了一个用户排序,因为集成了smarty,模板文件为top10.tpl,我用地址直接访问就可以正常显示,如:
1.abc
2.123
3.a12
我想在其它模板页调用这个top10.tpl应该怎么做?我用smarty的include但是他直接把模板标记显示出来了,并没有解析这个模板标记。
代码如下:
$top10=$this->load->view('top10.tpl','',true);
$this->view->assign('top10',$top10);
$this->view->display('list.tpl');
上面的功能和用smarty的include是一样的,直接显示标记但没有解析。
求朋友们指点一下。 |
|