我想问 doophp 我可以通过什么方式将我的数据库数据从模型控制器返回到我的视图。
这是我的控制器:
`class CategoryController extends DooController {
public function Index(){
Doo::loadModel('Category');
$category = new Category;
Doo::db()->find( $category, array('limit'=>1) );
$this->view()->render('Category/Index', $category);
}
}
我有一个像这样的视图(category.html),例如:
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<div>{{category.categoryname}}</div>
</body>
</html>`