我正在一个项目上创建一个 Yii 小部件,但我遇到了一个问题,尽管正确地遵循了所有的命名约定。
出错了
include(RecentCommentsWidget.php): failed to open stream: No such file or directory
我已正确包含main.phpapplication.components.*
上的路径,但我不知道为什么它没有检测到。
最近的CommentsWidget.php保存在组件目录内的views目录中。
有什么遗漏吗?
编辑:这是 RecentCommentsWidget 类( path => application/components)
class RecentCommentsWidget extends CWidget
{
private $_comments;
public $displayLimit = 5;
public $projectId = null;
public function init()
{
if(null !== $this->projectId)
$this->_comments = Comment::model()->with(array(
'issue'=>array('condition'=>'project_id='.$this->projectId)))->recent($this->displayLimit)->findAll();
else
$this->_comments = Comment::model()->recent($this->displayLimit)->findAll();
}
public function getData()
{
return $this->_comments;
}
public function run()
{
// this method is called by CController::endWidget()
$this->render('recentCommentsWidget');
}
}
最近的CommentsWidget 文件(路径 => 应用程序/组件/视图)
<ul>
<?php foreach($this->getData() as $comment): ?>
<div class="author">
<?php echo $comment->author->username; ?> added a comment.
</div>
<div class="issue">
<?php echo CHtml::link(CHtml::encode($comment->issue->name),array('issue/view', 'id'=>$comment->issue->id)); ?>
</div>
<?php endforeach; ?>
</ul>
这就是我所说的观点
<?php $this->widget('RecentCommentsWidget'); ?>
已解决:我写了recentComments.php而不是recentCommentsWidget.php