5

$this->Model->save()ID を渡せば特定のレコードを更新できることはわかっていますが、その行の 1 つのフィールドを更新するにはどうすればよいですか?

フィールドを持つusersテーブルがありbalanceます。balanceすでにあるものに基づいてフィールドを更新したい。

たとえば、ユーザーの残高フィールドに $20 があるとします。$1追加して$21にしたいです。これを行う方法を知っている唯一の方法は、使用することです

$balance = $this->Model->find('first', array(
    'conditions' => array('User.id' => $userId),
    'fields' => array('User.balance')
));

$this->Model->save(array(
    'User' => array('id' => $userId, 'balance' => $balance['User']['balance'] + $credit)
));

save1 回の通話ですべてを取得するにはどうすればよいですか?

4

3 に答える 3

8

これは次のことを行う必要があります。

$this->User->updateAll(array('User.balance' =>'User.balance + 1'), array('User.id' => $id));
于 2012-07-29T03:07:38.913 に答える
3
$this->Model->saveField('balance','balance+1');

トリックを行う必要があります!

于 2012-07-29T02:43:57.280 に答える
1

これを試して:-

public function edit($id = null) {
        $this->layout = 'admin_layout';
        $this->Model->id = $id;
        if (!$this->Model->exists()) {
            throw new NotFoundException(__('Invalid model'));
        }
        if ($this->request->is('post') || $this->request->is('put')) {
            if ($this->Model->save($this->request->data)) {
                $this->Session->setFlash(__('The model has been saved'));
                $this->redirect(array('action' => 'index'));
            } else {
                $this->Session->setFlash(__('The model could not be saved. Please, try again.'));
            }
        } else {
            $this->request->data = $this->Model->read(null, $id);
        }
        $datd = $this->Model->find('list');
        $this->set('data', $datd);
    }
于 2012-07-29T09:27:42.450 に答える