如何在模型中保存cakephp对象

时间:2012-05-05 00:39:54

标签: cakephp model save

我有一个项目,目标是当用户创建项目时我将在保存项目中提示输入电子邮件地址我将检查用户是否已经存在,如果不存在我将继续创建具有一堆默认值的新用户,在后台,如果用户想要激活,那么用户可以回来并完成个人资料。我怎么能在模型中做到这一点。似乎保存的唯一方法是传入数组,如何使用对象参数。

App::uses('User', 'Model');
class Item extends AppModel{
   public function save($data = null, $validate = true, $fieldList = array()) {
   $user = User::getUserbyEmail($data['Item']['email_address']);
   if($user){
      $user = new User();
      $user->firstName = "Bob";
      $user->save();  /// this save does not work
   }
   //get user Id and call parent save
   .........
}

class User extends AppModel {
   public $firtName;
   private $created;
   private $status = 0; //0 is in active
   $private $password;

   public function  __construct($id = false, $table = null, $ds = null) {
     parent::__construct($id, $table, $ds);
     $this->created = date("Y-m-d H:i:s");
     $this->setPassword($password);
  }

  public function setPassword($value){
     $this->password = mysecret_algorithm(standard_password);
  } 

 ..bunch of setter and getter here

}

我正在使用cakephp并且我不想在控制器中执行此操作,因为我在多个位置添加了项目,这样在模型中会很好,然后每个控制器只调用$ this-> Item-> save ();

1 个答案:

答案 0 :(得分:1)

在您的代码中,User::getUserbyEmail的目的是什么?

至于保存用户,请尝试:

class Item extends AppModel{
   public function save($data = null, $validate = true, $fieldList = array()) {
       $user = User::getUserbyEmail($data['Item']['email_address']);
       if (!$user){
           $user = new User(); // EDIT: forgot this part
           $user->create();
           $user->set($userData);
           $user->save();  /// this save does not work
       }
   }
   //get user Id and call parent save
   .........
}
上面的

$userData应该是一个关联数组,其中数组键是用户数据库表中字段的名称:

$userData = array(
    'firstname' => 'Bob'
);

请注意,在这种情况下,您的代码必须通过验证。