gpt4 book ai didi

php - 如何为下拉选项指定名称

转载 作者:搜寻专家 更新时间:2023-10-31 21:07:33 26 4
gpt4 key购买 nike

使用 Phalcon 框架,我有一个 Form 类文件,我在 .volt 文件中声明了 selectrender:

$soc_bulding =  new Select("soc_building_id", $options['soc_bulding'], 
array('using' => array('soc_building_id', 'soc_building_name'),
"class" => "mandatory-field") );
$soc_bulding->setLabel("Buiding name" . REQ_FIELD);
$this->add($soc_bulding);

在上面的代码中,'using' => array('soc_building_id', 'soc_building_name')soc_building_id 反射(reflect)为选项值和 soc_building_name 下拉选项中的实际文本,但我想在同一个选项框中多一个属性名称,已经尝试将 3 个参数传递给该数组,但它不起作用。

最佳答案

请使用下面的代码替换你的

echo $this->tag->select(array("users",
Users::find(),
"useEmpty" => true,
"emptyText" => "Please select",
"using" => array("id", "name"),
));

关于php - 如何为下拉选项指定名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29913071/

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