cakephp form helper(select)optgroup嵌套选项数组问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cakephp form helper(select)optgroup嵌套选项数组问题相关的知识,希望对你有一定的参考价值。
This problem occurs when there is a duplicated name for the first level item (optgroup) and a second level item (option). The rendered select will not contain the mentioned option unless you do the following...
// In the view... // example array ); echo $form->input('zone.id', array('options' => $zonesList, 'empty' => __('Elegàtu ciudad', true), 'class' => 'selectBox', 'showParents' => true ) ); // note the 'showParents' parameter
以上是关于cakephp form helper(select)optgroup嵌套选项数组问题的主要内容,如果未能解决你的问题,请参考以下文章
如何从 Cakephp4 中的 Helper 获取 $this->request->getAttribute('csrfToken')?