在我的Sitecontroller actionIndex中,我有一个dataProvider,它按类别过滤产品,然后将它们显示在listView中:
$model = new Produtos();
$searchModel = new ProdutosSearch();
$dataProvider = $searchModel->search(Yii::$app->request->queryParams);
// get the posts in the current page
$post = $dataProvider->getModels();
return $this->render('index',
['imagem1' => $imagem1, 'imagem2' => $imagem2,'imagem3' => $imagem3, 'model' => $model, 'searchModel' => $searchModel, 'dataProvider' => $dataProvider]);
在我的网站/ index.php中,我渲染视图以显示产品:
<?php echo $this->render('//produtos/view2', ['model' => $model, 'searchModel' => $searchModel, 'dataProvider' => $dataProvider]); ?>
在我的produtos / view2中,我有:
<nobr>
<?= $form->field($searchModel, 'categoria')->dropDownList(ArrayHelper::map(Categorias::find()->all(), 'categoria','categoria'), ['prompt'=>Yii::t('yii', 'Todos os produtos...')]) ?>
<?= Html::submitButton(Yii::t('app', 'Pesquisar'), ['class' => 'btn btn-warning']) ?>
</nobr>
<?= ListView::widget([
'dataProvider' => $dataProvider,
'itemView' => '_view2',
'summary' => '',
]); ?>
在我的produtos / _view2.php中,我有:
<?= DetailView::widget([
'model' => $model,
'options' => ['class' => 'detail1-galeria-view2'],
'attributes' => [
// cria um array com a fotografia, em que carrega a path no campo fieldName da bd
[
'attribute'=>'',
//'value'=>$model->foto,
'value'=>Html::a(Html::img(Yii::$app->getUrlManager()->getBaseUrl() . "/" .$model->foto, ['width'=>'230', 'height' => "256"]), $model->foto),
'format' => 'raw',
],
[
'attribute'=>'',
'value'=>$model->nome,
],
[
'attribute'=>'',
'value'=>$model->categoria,
],
[
'attribute'=>'',
'value'=>$model->descricao,
],
[
'attribute'=>'',
'value'=>$model->valor.' '.'€',
],
// info
[
'attribute'=>'',
'format' => 'raw',
// nesta hiperligação passo o valor do model->nome deste registo para encomendas/create
'value'=> Html::a(Yii::t('app','Comprar'), Url::toRoute(['encomendas/create', 'nome' => $model->nome, 'preco' => $model->valor])),
],
],
]) ?>
当我按所有产品过滤类别时,所有项目并排显示,但是当我按某个类别(每个示例的衣服)过滤时,过滤产品的渲染已完成,但是使用GAPS,此处和那里。过滤器删除不属于活动类别的产品和listView渲染间隙。
以下是一些间隙的屏幕截图:
如何解决这个问题?
修改: 以下css类几乎解决了这个问题:
.detail1-galeria-view2{
margin-bottom:40px;
width: 380px; /* this value fixed almost all gaps for the detailView */
float:left;
color:#201c0e;
font-weight:500;
font-size:12px;
text-align:center;
}
答案 0 :(得分:4)
这是样式问题,而不是php / yii问题。
在你的css中:
.clearfix {
clear: both;
}
在_view2.php
文件的顶部添加以下代码
<?php
if ($index + 1 % 4 == 0 && $index !== 0) {
echo '<span class="clearfix"></span>
}
?>
这应该在每4个项目后注入一个span标记(更改此项目以匹配您想要的列数。
span使用css clear命令重置浮动位置。
编辑:根据评论
您可能需要调整css才能有效清除浮动。
尝试将此添加到您的css:
.clearfix:before,
.clearfix:after {
content: "";
display: table;
}
.clearfix:after {
clear: both;
}
您可能需要进一步调整css,因为它特定于您的网站。