CakePHP:使用 optgroups 设置选择的默认值

发布于 2024-10-21 05:37:10 字数 159 浏览 2 评论 0原文

在没有 optgroup 的正常选择中,CakePHP 中的以下代码将使一个值成为默认值:

'已选择'=> $值

一旦我有了 optgroups(带有标题的选择标签),如何设置默认值?前面的代码似乎不起作用。

On a normal select, with no optgroups, the following code in CakePHP would make a value the default one:

'selected' => $value

Once I have optgroups (a select tag with headings) how do I set a default value? The previous code doesn't seem to work.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

街角迷惘 2024-10-28 05:37:10

您可以这样尝试:

echo $this->Form->input('group_id', array('type'=>'select','default'=>'2'));

导致生成以下 HTML:

<option value="2" selected="selected">Managers</option>

现在显示选项二,而不是任何其他选项。

you might try it like this:

echo $this->Form->input('group_id', array('type'=>'select','default'=>'2'));

leading to the following HTML being generated:

<option value="2" selected="selected">Managers</option>

Now option two is shown instead any other one.

明明#如月 2024-10-28 05:37:10

不要使用“值”或“选定”等,这会破坏 POST 中的表单。
如果必须使用视图级别,请使用“默认”。

更好的方法是从控制器设置它们:

if ($this->RequestHandler->is('post')) {
    ...
} else {
    $this->data['Model']['field'] = 2; // e.g.
}

请参阅 http:// www.dereuromark.de/2010/06/23/working-with-forms/ 了解详情

dont use "value" or "selected" etc. this will break your forms in POST.
if you must use the view level, use "default".

a better way is to set them from the controller:

if ($this->RequestHandler->is('post')) {
    ...
} else {
    $this->data['Model']['field'] = 2; // e.g.
}

see http://www.dereuromark.de/2010/06/23/working-with-forms/ for details

︶葆Ⅱㄣ 2024-10-28 05:37:10
echo $this->Form->input('point', array(
    'label'=>'',
    'options'=>$list_of_options,
    'value'=>$default_value,
    'empty'=>'--select--', 
    'onchange'=>'some_action();' 
  )
);
echo $this->Form->input('point', array(
    'label'=>'',
    'options'=>$list_of_options,
    'value'=>$default_value,
    'empty'=>'--select--', 
    'onchange'=>'some_action();' 
  )
);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文