CakePHP 模型通过中间表关联?
我有一个 Home 模型,链接到 Home.realtor_num = Realtor.num 上的 Realtor 模型。 我有一个 Office 模型链接到 Realtor.office_num = Office.num 上的 Realtor 模型。
假设我想要轻松访问 Homes 表上的查找结果集中的 Office.name。有没有一种简单的方法来指定上述关系,以便 $home['Office']['name'] 将包含我正在查找的数据?
I have a Home model that links to a Realtor model on Home.realtor_num = Realtor.num.
I have an Office model linked to the Realtor model on Realtor.office_num = Office.num.
Suppose I want easy access to Office.name in the result set of a find on the Homes table. Is there an easy way to specify the above relationship, such that $home['Office']['name'] will contain the data I'm looking for?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您在模型中正确设置了关联:
$this->Home->Realtor->Office->find(...)
If you have correctly setup associations in you models:
$this->Home->Realtor->Office->find(...)