我在使用Ajax和ClistView时遇到了问题。
我有2个帖子,每个都有评论,第一个有3条评论,第二条有一条评论。
发布A
评论链接(3)
发布B
评论链接(1)
当我点击Link to Comments(3)时,我按预期得到了以下内容
发布A
评论1
评论2
评论3
发布B
评论链接(1)
但是当我点击评论(1)时,我得到了
发布A
B的评论1
发布B
所以Post B的评论显示在帖子A。
之下我该如何解决这个问题?
Ajax链接的代码如下
<?php
echo CHtml::ajaxLink(
'Test request',
array($url_replace),
array(
'update'=>'#req_res_loading',
'beforeSend' => 'function() {
$("#maindiv").addClass("loading");
}',
'complete' => 'function() {
$("#maindiv").removeClass("loading");
}',
)
);
echo '<div id="req_res_loading">...</div>';
?>
并通过Clistview命令调用注释
<?php $this->widget('zii.widgets.CListView', array(
'dataProvider'=>$dataProvider,
'itemView'=>'_comment',
'template'=>"{items}\n{pager}",
)); ?>
我的_comments视图包含以下内容
<?php $this->widget('zii.widgets.CListView', array(
'dataProvider'=>$dataProvider,
'itemView'=>'_comment',
'template'=>"{items}\n{pager}",
)); ?>
我的_comment视图包含以下内容
<div class="comment">
<div class="content">
<?php
$this->beginWidget('CMarkdown', array('purifyOutput'=>true));
echo $data->content;
$this->endWidget();
?>
</div>
</div>
并且帖子视图是带有此代码的renderPartial
<div class="post">
<div class="title">
<?php echo CHtml::link(CHtml::encode($data->title), $data->url); ?>
</div>
<div class="author">
posted by <?php echo $data->author->username . ' on ' . date('F j, Y',$data->create_time); ?>
</div>
<div class="content">
<?php
$this->beginWidget('CMarkdown', array('purifyOutput'=>true));
echo $data->content;
$this->endWidget();
?>
</div>
提前感谢您的帮助