我已经设法将我的 2 个表clients
和risk_codes
彼此连接在一起,其中clients.risk_code_id
有一个外键for risk_codes.id
。
在我的客户端编辑视图中,我使用 HTML Helper 输出了一个表单。例如添加一个输入来编辑clients.name
我会使用echo $this->Form->input('name');
鉴于这risk_codes
是一个单独的表/模型,我将如何输出选项为risk_codes.name
且值为的选择下拉列表risk_codes.id
?
这些表是这样链接的:
Client belongsTo RiskCode
RiskCode hasMany Client