gpt4 book ai didi

yii2 - DropDownList yii 2.0 示例

转载 作者:行者123 更新时间:2023-12-04 09:05:18 29 4
gpt4 key购买 nike

我正在使用 yii 2.0 框架。
我如何从我的数据库中做出选择。
我找到了这个,但它是 yii 1.1:

<?php echo CHtml::dropDownList('listname', $select, 
array('M' => 'Male', 'F' => 'Female'));

我想将它传递给表单:
<?php $form->dropDownList() ?>

如何从我的数据库表中填写我的下拉列表?

最佳答案

如果您使用 ActiveForm 小部件,请使用:

<?php 
$items = ArrayHelper::map(Model::find()->all(), 'id', 'name');
$form->field($model, 'attribute')->dropDownList($items)
?>

关于yii2 - DropDownList yii 2.0 示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26594074/

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