我正在努力学习Yii,并且已经查看了Yii文档,但仍然没有真正得到它。我仍然不知道如何在Controller和View上使用CDataProvider来显示视图上可用的所有博客文章。任何人都可以根据以下内容提出建议或举例:
我的PostController中的actionIndex:
public function actionIndex()
{
$posts = Post::model()->findAll();
$this->render('index', array('posts' => $posts));
));
The View,Index.php:
<div>
<?php foreach ($post as $post): ?>
<h2><?php echo $post['title']; ?></h2>
<?php echo CHtml::decode($post['content']); ?>
<?php endforeach; ?>
</div>
除了上述内容外,有人可以建议如何使用CDataProvider来生成吗?
非常感谢。
答案 0 :(得分:17)
我建议的最好的方法是在视图中使用CListView,在控制器中使用CActiveDataProvider。所以你的代码有点像这样:
的控制器强>:
public function actionIndex()
{
$dataProvider = new CActiveDataProvider('Post');
$this->render('index', array('dataProvider' => $dataProvider));
}
<强>的index.php 强>:
<?php
$this->widget('zii.widgets.CListView', array(
'dataProvider'=>$dataProvider,
'itemView'=>'_post', // refers to the partial view named '_post'
// 'enablePagination'=>true
)
);
?>
_post.php :此文件将显示每个帖子,并在索引中作为窗口小部件CListView(, 'itemView'=>'_post'
)的属性传递。 php视图。
<div class="post_title">
<?php
// echo CHtml::encode($data->getAttributeLabel('title'));
echo CHtml::encode($data->title);
?>
</div>
<br/><hr/>
<div class="post_content">
<?php
// echo CHtml::encode($data->getAttributeLabel('content'));
echo CHtml::encode($data->content);
?>
</div>
基本上在控制器的索引操作中,我们正在创建一个新的CActiveDataProvider,提供 Post模型的数据供我们使用,我们将此数据提供者传递给索引视图。
在索引视图中,我们使用 Zii 小部件CListView,它使用我们作为数据传递的dataProvider来生成列表。每个数据项将在itemView文件中呈现为编码,我们将其作为属性传递给窗口小部件。此itemView文件可以在$ data变量中访问Post模型的对象。
建议阅读:使用Yii 1.1和PHP 5进行敏捷Web应用程序开发 对于Yii初学者来说,这本书非常好,列在Yii主页上。
的index.php
<?php
$dataArray = $dataProvider->getData();
foreach ($dataArray as $data){
echo CHtml::encode($data->title);
echo CHtml::encode($data->content);
}
?>