2013-04-24 45 views
1

我在我的模型中使用此代碼,如何在cakephp中的表中插入數據?

public function registration(){ 
$name = 'Foo'; 
$city = 'Bar'; 

$this->User->save( 
    array(
     'name' => $name, 
     'city' => $city 
     ) 
    ); 
} 

但同時插入得到一個致命錯誤

"Error: Call to a member function save() on a non-object 
File: C:\xampp\htdocs\blogs\app\Model\User.php" 

如何插入呢?

回答

12

您已經在User模型中。只需執行以下操作:

$this->save( 
    array(
     'name' => $name, 
     'city' => $city 
     ) 
    ); 
} 
相關問題