volist不起作用了,请问是哪里出错了?

浏览:840 发布日期:2014/04/02 分类:求助交流 关键字: volist
控制器class IndexAction extends Action {
    public function index(){
        $user=M('member');
        $list=$user->select();
        $this->assign('list',$list);
        $this->display();
    }
模板
<body>
<volist name='list' id='vo'>
<p>{$vo.['name']} ---------- {$vo.time}</p>

</volist>
</body>

输出了这个
{$vo.['name']} ---------- {$vo.time}
最佳答案
评论( 相关
后面还有条评论,点击查看>>