2012-08-02 34 views
0

當我嘗試查找給定用戶的帖子(在UsersController中)時,出現以下錯誤「Error:SQLSTATE [42S22]:Column not found:1054 Unknown column'Posts.user_id'in'where子句'「。 這裏的輪廓功能使用cakephp查找數據時發生錯誤

public function profile($id = null) { 
    $this->User->id = $id; 
    if (!$this->User->exists()) { //if the user doesn't exist while on view.ctp, throw error message 
     throw new NotFoundException(__('Invalid user')); 
    } 
    $this->set('user', $this->User->read(null, $id)); //sends info to view.ctp. 
    $conditions = array('posts.user_id' => $id); 
    $this->set('posts', $this->User->Posts->find('all',array('conditions' => $conditions))); 

} 這是查詢。

SQL Query: SELECT `Post`.`id`, `Post`.`title`, `Post`.`body`, `Post`.`created`, `Post`.`modified`, `Post`.`user_id` FROM `blog`.`posts` AS `Post` WHERE `posts`.`user_id` = 1 

編輯 - 我得到的查詢工作,現在我有另一個問題

在我profile.ctp頁我得到以下錯誤

Invalid argument supplied for foreach() [APP/View/Users/profile.ctp, line 35] 

這是行35

<?php foreach ($posts as $post): ?> 

這是來自profile功能的聲明ËUsersController

$this->set('posts', $this->User->Posts->find('all',array('conditions' => $conditions))); 
+0

你有從'User'一個'hasMany'協會到'Post'?如果是這樣,你應該使用'$ this-> User-> Post-> find'。 – bfavaretto 2012-08-02 03:04:59

+0

你建立了你的模型嗎?你的模型文件是什麼樣的?你需要指定它們之間的關係。 – 2012-08-02 03:05:08

回答

2

假設Post模型屬於UserUser有很多Post,修改你的代碼:

$this->set('posts', $this->User->Post->find('all',array('conditions' => $conditions))); 
+0

我檢查了你的建議,現在我收到以下錯誤「調用一個非對象的成員函數find()」 – user1406951 2012-08-02 03:36:44

+0

如前所述,我做了一些假設。你能證實這些嗎?另外,我在事故中複製了「Post」。查看更新。這是遲到:) – 2012-08-02 03:43:41

+0

我更新了我原來的帖子,以顯示我的UsersController hasMany關係 – user1406951 2012-08-02 03:47:33

相關問題