我是蛋糕的新手。我已经设置了一些东西,相关的是“用户”和“配置文件”表、控制器、模型和视图。在我profiles/add
看来,我正在尝试输出一个select
输入,其值为 the user.id
,选项文本为user.username
. 最终,该值user.id
将保存在profile.user_id
.
我已经阅读了很多文档,并成功设置了select
从表中输出选项user
,但它user.id
同时使用值和选项文本。
控制器:
$this->set('users', $this->Profile->User->find('list'));
看法:
echo $this->Form->input('user_id');
似乎这种事情是例行公事,所以如果我完全忽略了它,请随时通过文档链接来回答。
谢谢!