问题: 除了第一个
之外,为什么代替星星,为所有元素显示加载符号(星形不显示)CODE:
foreach($posts as $post):
<span class="star-container">
debug($post->post_rate);
echo StarRating::widget([
'model' => $post,
'attribute' => 'post_rate',
'pluginOptions' => [
'size'=>'xs',
'filledStar' => '★',
'emptyStar' => '☆',
]
]);
</span>
endforeach;
答案 0 :(得分:0)
尝试向您的小部件添加ID或名称。
echo StarRating::widget([
'model' => $post,
'id' => $post->id
'attribute' => 'post_rate',
'pluginOptions' => [
'size'=>'xs',
'filledStar' => '★',
'emptyStar' => '☆',
]
]);