2013-07-30 114 views
1

我在我的Db中有Ipr_forms表我想更新該行,但下面的代碼給了我該表的job_id。這不是我的要求... ..我想表ID來更新現有的表CakePHP:從Ipr_forms表中獲取IprForm ID並更新表中的行

我控制器代碼

  $id =$this->request->data['IprForm']['id'];                   
      $ipr_forms['job_id'] = $this->request->data['IprForm']['job_id']; 
      $ipr_forms['IprForm'] = $this->request->data['IprForm'];   
      $this->IprForm->id = $id; 
     //debug($id); 
      $ipr_forms_save = $this->IprForm->save($ipr_forms); 

,如果我調試ID的$ id,$id變量保持JOB_ID ....

回答

0

在這裏我可以舉一個例子來編輯CakePHP中具有多個字段

任何記錄

只是拿來看的功能,你可以有很好的想法

public function edit($id = null) { 
    if (!$id) { 
     throw new NotFoundException(__('Invalid post')); 
    } 

    $post = $this->Post->findById($id); 
    if (!$post) { 
     throw new NotFoundException(__('Invalid post')); 
    } 

    if ($this->request->is('post') || $this->request->is('put')) { 
     $this->Post->id = $id; 
     if ($this->Post->save($this->request->data)) { 
      $this->Session->setFlash(__('Your post has been updated.')); 
      $this->redirect(array('action' => 'index')); 
     } else { 
      $this->Session->setFlash(__('Unable to update your post.')); 
     } 
    } 

    if (!$this->request->data) { 
     $this->request->data = $post; 
    } 
} 

,或者您也可以參考與編輯的標題詳細cakephp.org link帖子

相關問題