2

現在ログインしているユーザーがプロファイルを作成/追加するときに、値「1」をユーザーテーブルの「profile_created」フィールドに保存しようとしていますが、現在の実装ではこの値が変更されません。何か提案はありますか? 前もって感謝します。

現在のプロファイル追加コード:

    public function add() {
            if ($this->request->is('post')) {
                $this->Profile->create();
                $this->request->data['Profile']['user_id'] = $this->Auth->user('id');
                // code implemented below               
                $this->loadModel('User');
                $data = array(
                    'Profile' => array('user_id' => $this->Auth->user('id')),
                    'User' => array('profile_created' => '1'),
                );

                if ($this->Profile->saveAssociated($this->request->data)) {
                    $this->Session->setFlash(__('Your account profile has been created'));
                    $this->redirect(array('controller' => 'events', 'action' => 'index'));
                } else {
                    $this->Session->setFlash(__('Your account profile could not be saved. Please, try again.'));
                }
            }


        }
4

1 に答える 1

2

$this->request->data の値を変更することはできません

$data も作成していて、どこにも使用していません

このようなことを試してください(もちろんテストされていません)

    if ($this->request->is('post')) {
        $this->Profile->create();
        $data = $this->request->data;
        $data['Profile']['user_id'] = $this->Auth->user('id');
        // code implemented below               
        $this->loadModel('User');

        if ($this->Profile->save($data)) {
            //Update user here if Profile saved successfully 
            $this->Profile->User->id = $this->Auth->user('id');
            if($this->Profile->User->saveField('profile_created', '1')){
                $this->Session->setFlash(__('Your account profile has been created'));
                $this->redirect(array('controller' => 'events', 'action' => 'index'));
            }else{
                $this->Session->setFlash(__('Your Profile was saved, but an error has occurred while updating the Users table'));
                //Email your self the user ID here or something ??
            }
        } else {
            $this->Session->setFlash(__('Your account profile could not be saved. Please, try again.'));
        }
    }

さらにサポートが必要な場合はお知らせください。

于 2013-06-08T19:21:04.547 に答える