gpt4 book ai didi

php - Yii2 Html::dropDownList 和 Html::activeDropDownList 权衡

转载 作者:可可西里 更新时间:2023-11-01 12:47:31 29 4
gpt4 key购买 nike

在 Yii2 中,使用 Html::activeDropDownList,我可以以如下形式提交数据:

 <?= Html::activeDropDownList($model, 'category', ArrayHelper::map($categories, 'id', 'name'), [
'multiple' => 'multiple',
'class' => 'multiselect',
]) ?>

有没有办法在上面指定预选类别?我知道可以使用 Html::dropDownLost 来完成,如下所示:

<?= Html::dropDownList('category', [1, 3, 5], ArrayHelper::map($categories, 'id', 'name'), [
'multiple' => 'multiple',
'class' => 'multiselect',
]) ?>

但是有一个权衡!没有地方表明这是附加到某个要提交的特定模型的一些数据,因为使用 Html::activeDropDownList

我找到的解决方案之一是像下面这样使用 ActiveForm:

<?= $form->field($model, 'category')
->dropDownList('category', [1, 3, 5], ArrayHelper::map($categories, 'id', 'name')
]) ?>

最后一个选项的问题是我无法指定 html 选项(例如“多个”)和 css(例如“类”)。

对于能够使用下拉列表来指定列表是多选的并具有预选值的能力有什么帮助吗?此外,如果有人指导我找到一个资源,我可以在其中阅读有关何时何地选择 activeDropDownListdropDownList 的信息,我将非常感激。

谢谢!

最佳答案

@scaisEdge 的回答是正确的,但您可以尝试另一种选择:

<?php 
$model->category = [1,3,5]; //pre-selected values list
echo $form->field($model, 'category')
->dropDownList(ArrayHelper::map($categories, 'id', 'name'),
[
'multiple' => 'multiple',
'class' => 'YOUR_CLASS'
]
) ?>

这段代码也是有效的并且经过测试。快乐编码:)

关于php - Yii2 Html::dropDownList 和 Html::activeDropDownList 权衡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32526601/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com