CakePHP:如何在检索数据时指定模型?

发布于 2024-10-04 13:48:12 字数 121 浏览 4 评论 0原文

我想使用递归级别 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 技术交流群。

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

发布评论

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

评论(1

转身泪倾城 2024-10-11 13:48:12

最好使用 Containable 行为,它允许您指定如下查找条件:

$this->Post->find('all', array(
    'contain' => array(
        'Tag', 
        'Comment' => array(
            'User')
            )
        )
    );

另外,与此结合,最好在 AppModel 中将 $recursive 设置为 -1。

class AppModel extends Model {
    var $recursive = -1;
    var $actsAs = array('Containable');
}

这将为您提供所需的更精细的控制,并确保您的查询不会随着时间的推移将更多关系添加到模型中而膨胀。

It's better to use the Containable behavior, which will allow you to specify find conditions like this:

$this->Post->find('all', array(
    'contain' => array(
        'Tag', 
        'Comment' => array(
            'User')
            )
        )
    );

Also, in conjunction with this, it's good to set $recursive to -1 in your AppModel.

class AppModel extends Model {
    var $recursive = -1;
    var $actsAs = array('Containable');
}

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.

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