CakePHP3.1:禁用 select 输入中的选项

CakePHP3.1: disable options in a select input

我想禁用 select 输入中的选项,所以我尝试了:

echo $this->Form->select("status", 
    [
    'options' => $status, 
    'value' => $order->status, 
    'label' => false, 
    'disabled' => [1, 2]
    ]);

但它不会在 html 代码中生成任何 disabled 语句。

我的错误是什么?

将属性设置为 select 选项的正确方法是像这样传递一个数组

$options = [
    [ 'text' => 'option 1', 'value' => 'value 1', 'disabled' => true],
    [ 'text' => 'option 2', 'value' => 'value 2', 'disabled' => true],
    [ 'text' => 'option 3', 'value' => 'value 3'],
    [ 'text' => 'option 4', 'value' => 'value 4']
];

echo $this->Form->select(
    'status', 
    $options, 
    ['value' => $order->status, 'label' => false]
);

您应该使用 FormHelper 的输入功能并设置类型 = "select"
.我的样本(只能选三个)

$status = [1 => 'One', 2 => 'Two', 3 => 'Three'];
echo $this->Form->input("status", 
    [
    'type' => 'select',
    'options' => $status, 
    'label' => false, 
    'disabled' => [1, 2]
    ]
);