0

を使用してコントローラーで POST/GET パラメーターを送信することは可能ですか?

$this->_forward("/url/here");
4

1 に答える 1

2
public function fooAction()
{
    // forward to another action in the current controller and module:
    $this->_forward('bar', null, null, array('baz' => 'bogus'));
}

public function barAction()
{
    // forward to an action in another controller:
    // FooController::bazAction(),
    // in the current module:
    $this->_forward('baz', 'foo', null, array('baz' => 'bogus'));
}

public function bazAction()
{
    // forward to an action in another controller in another module,
    // Foo_BarController::bazAction():
    $this->_forward('baz', 'bar', 'foo', array('baz' => 'bogus'));
}

マニュアルによると、配列でパラメーターを送信できます。最後の引数にする必要があります。

于 2012-05-19T03:13:50.627 に答える