0

我目前正在从 CakePHP 文档添加到博客示例,并创建了一个用户表以便将帖子分配给某个用户,并且我已经在我的帖子表中添加了一个 user_id 字段

我在我的帖子控制器中编写了以下函数:

public function viewuser($user_id = null){

    if (!$this->Post->exists($user_id)) {
        throw new NotFoundException(__('Invalid user'));
    }
    $options = array('conditions' => array('Post.user_id' => $user_id));
    $this->set('posts', $this->Post->find('all', $options));
}

但是当我访问两者时,它会返回所有用户的所有帖子http://localhost/cake-app/posts/viewuser/1http://localhost/cake-app/posts/viewuser/2而不是仅返回具有发布$user_id值的用户的帖子。

有人可以帮我解决这个问题吗?我是 CakePHP 的新手,所以它可能是一个简单的修复。

编辑 - 生成的 SQL 如下:

1   SELECT COUNT(*) AS `count` FROM `jaredisalie`.`posts` AS `Post` WHERE `Post`.`id` = 1   
2   SELECT `Post`.`id`, `Post`.`title`, `Post`.`user_id`, `Post`.`imageurl`, `Post`.`category_id`, `Post`.`summary`, `Post`.`content`, `Post`.`created`, `Post`.`modified`, `Category`.`id`, `Category`.`title`, `User`.`id`, `User`.`username`, `User`.`name`, `User`.`password`, `User`.`role`, `User`.`created`, `User`.`modified` FROM `jaredisalie`.`posts` AS `Post` LEFT JOIN `jaredisalie`.`categories` AS `Category` ON (`Post`.`category_id` = `Category`.`id`) LEFT JOIN `jaredisalie`.`users` AS `User` ON (`Post`.`user_id` = `User`.`id`) WHERE `Post`.`user_id` = 1      
3   SELECT `Category`.`id`, `Category`.`title` FROM `jaredisalie`.`categories` AS `Category` WHERE 1 = 1        
4   SELECT `Posts`.`id`, `Posts`.`title`, `Posts`.`user_id`, `Posts`.`imageurl`, `Posts`.`category_id`, `Posts`.`summary`, `Posts`.`content`, `Posts`.`created`, `Posts`.`modified` FROM `jaredisalie`.`posts` AS `Posts` WHERE `Posts`.`category_id` IN (1, 2, 3)      
5   SELECT `Post`.`id`, `Post`.`title`, `Post`.`user_id`, `Post`.`imageurl`, `Post`.`category_id`, `Post`.`summary`, `Post`.`content`, `Post`.`created`, `Post`.`modified`, `Category`.`id`, `Category`.`title`, `User`.`id`, `User`.`username`, `User`.`name`, `User`.`password`, `User`.`role`, `User`.`created`, `User`.`modified` FROM `jaredisalie`.`posts` AS `Post` LEFT JOIN `jaredisalie`.`categories` AS `Category` ON (`Post`.`category_id` = `Category`.`id`) LEFT JOIN `jaredisalie`.`users` AS `User` ON (`Post`.`user_id` = `User`.`id`) WHERE 1 = 1 ORDER BY `Post`.`modified` desc LIMIT 20        
6   SELECT COUNT(*) AS `count` FROM `jaredisalie`.`posts` AS `Post` LEFT JOIN `jaredisalie`.`categories` AS `Category` ON (`Post`.`category_id` = `Category`.`id`) LEFT JOIN `jaredisalie`.`users` AS `User` ON (`Post`.`user_id` = `User`.`id`) WHERE 1 = 1
4

2 回答 2

2

首先,检查$this->Post->exists()不会$user_id给你想要的例外。我想您想检查一下,如果User存在,请$this->Post->User->exists()改用。

第二 - 检查您的模型命名和它们之间的关系(在Category, Post, User- 模型中)您的 SQL 中不知何故有一个Posts和一个Post模型。我想,你在不应该的地方添加了一个“s”;)

于 2013-06-20T06:56:06.700 回答
1

你正在覆盖你的变量

这段代码:

$options = array('conditions' => array('Post.user_id' => $user_id));
$this->set('posts', $this->Post->find('all', $options));

负责查询2:

SELECT ... FROM `jaredisalie`.`posts` ... WHERE `Post`.`user_id` = 1      

这正是你所期望的。这是与问题中的代码相关的最后一个查询,但还有 4 个查询。

很明显/明显的是,在来自查询 5 和 6 的同一请求中,在此之后的 post 模型上有后续发现:

SELECT ... FROM `jaredisalie`.`posts` AS `Post` ... WHERE 1 = 1 ORDER BY `Post`.`modified` desc LIMIT 20        
SELECT COUNT(*) AS `count` FROM `jaredisalie`.`posts` AS `Post` ... WHERE 1 = 1

因此,在您正在使用但不在问题中的代码中,可能有这样一行:

$this->set('posts', $this->paginate());

或类似的 - 要么使用不同的变量名,要么如果没有必要,只需将其删除。

你有一个逻辑错误

这段代码:

if (!$this->Post->exists($user_id)) {
    throw new NotFoundException(__('Invalid user'));
}

第一个查询:

SELECT COUNT(*) AS `count` FROM `jaredisalie`.`posts` AS `Post` WHERE `Post`.`id` = 1 

是不合逻辑的。该变量(据称)是一个用户 ID - 但您正在检查是否存在具有该 ID 的帖子。

于 2013-06-20T08:55:16.390 回答