表单 select 选项从 cakephp 3.x.x 中的外键 table 访问期望字段
Form select options access desire field from foreign key table in cakephp 3.x.x
在我的项目中,我有项目 table,其中包含两个外键 locations_id 和 categories_id。当我添加新项目时,cateogries_id 出现 categories.name
在 add.ctp : select options (foreign) 键是显示 ID。
我想出现在位置 select 选项 locations.city 字段来自位置 table.
这是蛋糕烘焙命令用于我所有 tables.!
谢谢
\src\Model\Table\LocationsTable.php
更改显示字段。这是显示 ID ..
现在改变
$this->displayField('id');
要$this->displayField('name');
/*name是你在你table你要显示的字段
在我的项目中,我有项目 table,其中包含两个外键 locations_id 和 categories_id。当我添加新项目时,cateogries_id 出现 categories.name
在 add.ctp : select options (foreign) 键是显示 ID。
我想出现在位置 select 选项 locations.city 字段来自位置 table.
这是蛋糕烘焙命令用于我所有 tables.!
谢谢
\src\Model\Table\LocationsTable.php
更改显示字段。这是显示 ID ..
现在改变
$this->displayField('id');
要$this->displayField('name');
/*name是你在你table你要显示的字段