當我嘗試查找給定用戶的帖子(在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)));
你有從'User'一個'hasMany'協會到'Post'?如果是這樣,你應該使用'$ this-> User-> Post-> find'。 – bfavaretto 2012-08-02 03:04:59
你建立了你的模型嗎?你的模型文件是什麼樣的?你需要指定它們之間的關係。 – 2012-08-02 03:05:08