gpt4 book ai didi

validation - 在 CodeIgniter 中重新填充选择表单字段

转载 作者:行者123 更新时间:2023-12-02 16:23:11 25 4
gpt4 key购买 nike

我想在验证后重新填充(即重新填充)从选择表单字段发布的值。我知道 codeigniter 用户指南建议使用 set_select() 函数,但指南中的示例假设您已经对“select”表单元素的值数组进行了硬编码(在 HTML 中)。就我而言,我使用了表单助手,并且我的选择字段值是从 array() 中提取的,如下所示:


$allstates = array('blah','blah2','blah3','blah4','blah5');
echo form_label('Select State Affiliate', 'state');
echo form_dropdown('state', $allstates);

不用说,$allstates 数组是动态的并且会随着时间的推移而变化。那么我该如何编码,以便可以用用户选择的值重新填充我的选择字段呢?

最佳答案

您可以通过 form_dropdown 的第三个参数设置应预选的值。用户在上一步中选择的值位于 $this->input->post('state') 中。所以你会使用:

echo form_dropdown('state', $allstates, $this->input->post('state'));

来自用户指南:

The first parameter will contain the name of the field, the second parameter will contain an associative array of options, and the third parameter will contain the value you wish to be selected

$options = array(
'small' => 'Small Shirt',
'med' => 'Medium Shirt',
'large' => 'Large Shirt',
'xlarge' => 'Extra Large Shirt',
);

$shirts_on_sale = array('small', 'large');

echo form_dropdown('shirts', $options, 'large');

// Would produce:

<select name="shirts">
<option value="small">Small Shirt</option>
<option value="med">Medium Shirt</option>
<option value="large" selected="selected">Large Shirt</option>
<option value="xlarge">Extra Large Shirt</option>
</select>

关于validation - 在 CodeIgniter 中重新填充选择表单字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3209238/

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