0

コントローラから他のビューにデータを送信するにはどうすればよいですか?

function index() 
{
    if(!empty($this->data))
    {
                $projects = $this->Hour->getProjectsByDate($this->data);
                **//here I have to redirect $projects to another view.** 
    }
    $this->set('projects', $this->Project->find('list', array('conditions' => 
            array('Project.active' => true)))); 
} 

ありがとうございました!:)

4

1 に答える 1

2

あなたの後にこれを追加してみてください$this->set('projects', $this->Project->find('list', array('conditions' => array('Project.active' => true))));

$this->render('whatever view you want');

別のビューをレンダリングする前に、変数を設定することを忘れないでください。

function index() 
{
    if(!empty($this->data))
    {
                $projects = $this->Hour->getProjectsByDate($this->data);
                **//here I have to redirect $projects to another view.**
                  //You should set your variables first before you render a different view: 
              $this->set('projects', $this->Project->find('list', array('conditions' => 
            array('Project.active' => true)))); 

              //Then render a different view
              $this->render('some other view');

    }

} 
于 2012-05-13T20:41:25.243 に答える