gpt4 book ai didi

php - 在不获取关联模型的情况下检索模型 - CakePHP

转载 作者:可可西里 更新时间:2023-10-31 22:53:39 25 4
gpt4 key购买 nike

我使用 find('all') 函数从我的数据库中检索帖子记录,但这也会返回与具有 belongsTo - hasMany 关系的 Post 模型关联的所有用户信息。

这样做的缺点是用户模型包含密码和其他重要信息。这被认为是安全问题吗?我无处回应 View 中的信息。

谢谢


编辑:

我修改了我的代码,但我仍然得到关联的模型。

        $this->set('posts_list',$this->Post->find('all',array('contain' => false, 'order' => array('Post.price ASC'))));

有什么想法吗?

最佳答案

您有多种选择。您可以在模型上设置 recursive 属性:

$this->Post->recursive = -1;
$posts = $this->Post->find('all');

或者,您可以指定 recursive 作为搜索的选项:

$posts = $this->Post->find('all', array(
'recursive' => -1,
'conditions' => ...
);

您还可以在 Post 模型中使用 Containable 行为。在这种情况下,您可以指定一个空集:

class Post extends AppModel {
var $actsAs = array('Containable');
}

$this->Post->contain();
$posts = $this->Post->find('all');

或者,在查询中指定:

$posts = $this->Post->find('all', array(
'contain' => false,
);

Containable 行为的好处是当您稍后将其他模型与您的帖子相关联时。假设您实现了一个标签模型。现在你想找到一个带有它的标签的帖子,而不是使用模型:

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

关于php - 在不获取关联模型的情况下检索模型 - CakePHP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5575884/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com