我正在尝试,但没有找到从字段加载值并根据其范围生成select_from_array的方法。 例如: 我有2个选择框 品牌->负载->模型(使用背包字段类型及其工作原理)
`'type' => 'select2_from_ajax',
'name' => 'camera_model_id',
'entity' => 'camera_model',
'attribute' => 'name',
'data_source' => url('camera-brands'),
'placeholder' => 'Selecione o Modelo',
'minimum_input_length' => 0,
'dependencies' => ['camera_brand_id'],`
但是,在用户选择了最后一个selectBox之后,我需要修改另一个字段
`'name' => 'channel',
'label' => "Canal da Câmera",
'type' => 'select2_from_array',
'options' => ['' => '',
'01' => '01',
'02' => '02', ...`
因此,选项可以用我在“模型”字段数据库中注册的最大字段填充。 可能吗?也许是实现解决方案的另一种方法? 预先感谢!
答案 0 :(得分:0)
要具有取决于另一个输入值的输入,可以将两个字段都设为select2_from_ajax
。
那样:
CategoryController::index()
例); selec2_from_ajax
字段上使用“ dependencies”属性,以便在重置一个字段时,两个字段都被重置; 我希望答案对某人有帮助。干杯!