显示特定用户的 habtm 关系时出现问题

发布于 2024-09-27 06:47:54 字数 455 浏览 5 评论 0原文

我有 3 个表(Accessories、User、Accesories_Users)...在 Accessories_Controller 我只是想从登录的用户那里获取附件,所以我设置 recursive=1 然后执行 find...

问题是,如果我do

$this->Accessory->find("All", array('conditions'=>array('AccessoriesUser.user_id'=>$this->Auth->User('id'), 'AccessoriesUser.Accesory_id'=>'Accessory.id')));

有一个错误,因为它找不到 Accessory_id 字段...我可以使用自定义查询来管理它,但这不是想法...然后即使我执行自定义查询解决方案,我也无法对查询返回的数组进行分页.. 预先感谢

您能给我的任何帮助...

I got 3 tables (Accessories, User, Accesories_Users)... At Accessories_Controller im trying just to get the accessories from the user logged in, so i set the recursive=1 and then execute the find...

The problem is, if i do

$this->Accessory->find("All", array('conditions'=>array('AccessoriesUser.user_id'=>$this->Auth->User('id'), 'AccessoriesUser.Accesory_id'=>'Accessory.id')));

theres an error cus it doesnt find Accessory_id field.... I could manage this using a custom query but is not the idea... And then even if i do the custom query solution i cannot paginate the array that the query return...

Thanks in advance for any help you can give me...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只需使用 var $paginate = array('conditions'=>array())
对于 habtm 关系 $this->model->bindModel('hasOne'=>aaray('otherModel'));

just use var $paginate = array('conditions'=>array())
and for habtm relations $this->model->bindModel('hasOne'=>aaray('otherModel'));

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文