我在 cakephp 中有这个,我尝试在 cake php 中创建相关数据时选择要在组合框中显示的字段。
<?php echo $this->Form->create('Round'); ?>
<fieldset>
<legend><?php echo __('Add Round'); ?></legend>
<?php
echo $this->Form->input('description');
echo $this->Form->input('text_marked');
echo $this->Form->input('project_id');
echo $this->Form->input('User');
?>
</fieldset>
<?php echo $this->Form->end(__('Submit')); ?>
我尝试在表项目中选择一个带有 project_title 的项目,而不是通过“project_id”。标题不是唯一的,但比 id 更具描述性。我可以在蛋糕 php 中做到这一点吗?