CakePHP:如何在检索数据时指定模型?
我想使用递归级别 3 检索数据。问题是它添加了所有 8 个链接模型,但我只需要来自三个数据模型的数据。有没有办法忽略某些模型或专门询问某些模型但不是全部。像 useModel('Model1', 'Model2') 这样的东西?
I want to retrive data with recursive level 3. The problem is that It adds all 8 linked models but I need data from only three data models. Is there any way to ignore some models or specifically asked some models but not all. something like useModel('Model1', 'Model2')?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最好使用 Containable 行为,它允许您指定如下查找条件:
另外,与此结合,最好在 AppModel 中将 $recursive 设置为 -1。
这将为您提供所需的更精细的控制,并确保您的查询不会随着时间的推移将更多关系添加到模型中而膨胀。
It's better to use the Containable behavior, which will allow you to specify find conditions like this:
Also, in conjunction with this, it's good to set $recursive to -1 in your AppModel.
This will give you the finer control you need and ensure that your queries don't bloat as more relationships get added to your models over time.