首页上一页 1 下一页尾页 1 条记录 1/1页
php入门精通里THINKPHP章节$this->assign()模板赋值出错,模板{$vo.pers_id}不能显示
发表在PHP图书答疑
2015-12-18
是否精华
是
否
版块置顶:
是
否
控制器里文件这个代码如下
<?php
class IndexAction extends Action {
public function index(){
$db=new Model('pers');
$select=$db->limit(3)->select();
print_r($select); //可以输出一个查询到的数组
$this->assign('select',$select);
$this->display(); //模板里无法显示相应的值
}
}
?>
模板index.html文件里这样
<body>
<volist name="select" id="vo">
{$vo.pers_id}
{$vo.pers_name}
{$vo.pers_phone}
</body>
查看输出的模板页面是这样的
Parse error: syntax error, unexpected T_VARIABLE in E:\AppServ\www\me\Lib\Action\IndexAction.class.php on line 48
:(
syntax error, unexpected T_VARIABLE
错误位置
FILE: E:\AppServ\www\me\Lib\Action\IndexAction.class.php LINE: 48
<?php
class IndexAction extends Action {
public function index(){
$db=new Model('pers');
$select=$db->limit(3)->select();
print_r($select); //可以输出一个查询到的数组
$this->assign('select',$select);
$this->display(); //模板里无法显示相应的值
}
}
?>
模板index.html文件里这样
<body>
<volist name="select" id="vo">
{$vo.pers_id}
{$vo.pers_name}
{$vo.pers_phone}
</body>
查看输出的模板页面是这样的
Parse error: syntax error, unexpected T_VARIABLE in E:\AppServ\www\me\Lib\Action\IndexAction.class.php on line 48
:(
syntax error, unexpected T_VARIABLE
错误位置
FILE: E:\AppServ\www\me\Lib\Action\IndexAction.class.php LINE: 48