各投稿に属するコメントのみを表示したい、
私はこれを行いました: 投稿view.php
では、ビューをレンダリングしました:
<?php
$this->renderPartial('/TblComments/_comment',array(
'comments'=>$model_comments,
));
?>
ここは_comment.php
<div class="view">
<b><?php echo CHtml::encode($data->getAttributeLabel('id')); ?>:</b>
<?php echo CHtml::link(CHtml::encode($data->id), array('view', 'id'=>$data->id)); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('user_id')); ?>:</b>
<?php echo CHtml::encode($data->user_id); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('post_id')); ?>:</b>
<?php echo CHtml::encode($data->post_id); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('comment_body')); ?>:</b>
<?php echo CHtml::encode($data->comment_body); ?>
<br />
<?php echo CHtml::link('Edit', array('tblComments/update', 'id'=>$data->id)); ?>
<br/>
<?php echo CHtml::link('Delete', array('tblComments/delete', 'id'=>$data->id)); ?>
</div>
今問題は:
Undefined variable: data
何故かはわからない ?説明して助けてください!