cakephp : go to previous page after editing a player

a 夏天 提交于 2019-12-12 04:37:31

问题


I have players in pages. I'm for instance on page 13. Here I click on the edit function to edit a player. Now after the edit I want to get back to that page 13 but It stays at the edit page.

edit action :

public function admin_edit($id = null) {
    if (!$this->Player->exists($id)) {
        throw new NotFoundException(__('Invalid player'));
    }
    if ($this->request->is(array('post', 'put'))) {
        $data = $this->request->data['Player'];
        if(!$data['player_image']['name']){
            unset($data['player_image']);
        }
        if ($this->Player->save($data)) {
            $this->Session->setFlash(__('The player has been saved.'));
            $this->redirect($this->referer());
        } else {
            $this->Session->setFlash(__('The player could not be saved. Please, try again.'));
        }
    } else {
        $options = array('conditions' => array('Player.' . $this->Player->primaryKey => $id));
        $this->request->data = $this->Player->find('first', $options);
    }
    $videos = $this->Player->Video->find('list');
    $this->set(compact('videos'));
}

view action :

public function admin_view($id = null) {
    if (!$this->Player->exists($id)) {
        throw new NotFoundException(__('Invalid player'));
    }
    $options = array('conditions' => array('Player.' . $this->Player->primaryKey => $id));
    $this->set('player', $this->Player->find('first', $options));
}

回答1:


You can save the referring page in the else section of the if/else structure of the edit function. Then use that stored value in the if (i.e., $this->request->is(array('post', 'put')) = TRUE section.

So your code would look something like:

public function admin_edit($id = null) {
  if ($this->request->is(array('post', 'put'))) {

    /* your other code */

    $sendback = $this->Session->read('referer');
    $this->Session->delete('referer');
    $this->redirect($sendback);

  } else {

    /* your other code */

    $this->Session->write('referer', $this->referer());
  }
}


来源:https://stackoverflow.com/questions/25652396/cakephp-go-to-previous-page-after-editing-a-player

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!