0

这是我使用的下拉代码:

$task_id = 2;
    $inr = 0;
                        $arr = array();
                        foreach ($options as $option){
                            $inr = $option['Employee']['employee_id'];
                            $arr[$inr] = $option['Employee']['first_name'].' '.$option['Employee']['last_name'];
                        }
                        echo $this->Form->input('assigned_to',      array(  'options' => array( $arr), 
                                                                    'empty' => '(choose one)',
                                                                    'div'=>'formfield',
                                                                    'label' => 'Assigned To',
                                                                    'error' => array(   'wrap' => 'div',
                                                                                        'class' => 'formerror'
                                                                                    )
                                                            ));

它以正确的值显示在$options.

但我需要使用 cakephp 代码选择一个选项值。

我怎样才能做到这一点?

那就是我有一个值为:

$task_id = 2;

那么我怎样才能选择这个选项值呢?

如果有可能 ?

4

1 回答 1

0

你的意思是默认值?要么default在表单输入元素的属性中使用键,要么使用控制器的更简洁的方法:

/* inside add/edit actions */
if (!empty($this->request->data)) {
    $this->Country->create();
    if ($this->Country->save($this->data)) {
        ...
    } else {
        ...
    }
} else {
    /* Now here you can put your default values */
    $this->request->data['Country']['active'] = 1;
    $this->request->data['Country']['lat'] = 0.0;
    ...
}

@参见 http://www.dereuromark.de/2010/06/23/working-with-forms/

于 2012-09-18T11:17:10.353 回答