Zend Form SetAction Using Named Routes

后端 未结 4 1429
无人及你
无人及你 2020-12-31 12:45

I have a form that I am trying to set the action for. I want to declare the action inside my form file (which extends Zend_Form) instead of in a controller or view, using a

相关标签:
4条回答
  • 2020-12-31 12:48

    I do not know when it was added, but there is an even simpler solution.

    You can retrieve the form's view object with getView(), which has access to the registered routes.

    //In the form
    $this->setAction($this->getView()->url(array('param1' => 'value1'), 'routeName'));
    
    0 讨论(0)
  • 2020-12-31 12:53

    Method 1: Get the router

    // in your form
    public function init()
    {
        $router = Zend_Controller_Front::getInstance()->getRouter();
        $url = $router->assemble(
            array(
                'paramterName0' => 'parameterValue0',
                'paramterName1' => 'parameterValue1',
            ),
            'routeName'
        );
    
        $this->setAction($url);
        ...
    }
    

    Method 2: Get an instance of the View object and call the url-view-helper directly

    // in your form    
    public function init()
    {
        $url = Zend_Layout::getMvcInstance()->getView()->url(array(), 'routeName';
        $this->setAction($url);
        ...
    }
    

    I prefer Method 1. It is more verbose but you have one dependency less in your form.

    0 讨论(0)
  • 2020-12-31 12:55

    Nowadays you can access the Zend_View object via getView() method on Zend_Form classes:

    // init your form    
    public function init()
    {
        $view = $this->getView();
        $url = $view->url(array('module'=>'login','action'=>'login'));
        $this->setAction($url);
        ...
    }
    

    Might this help on ZF 1.8+

    0 讨论(0)
  • 2020-12-31 13:12

    if in my controller action:

    $this->view->form = $form;
    

    I will use view helper url to generate the form action url in my view script ( xxx.phtml):

    $url = $this->url(array('controller'=>'my-controller-name', 
                        'action'=>'my-action-name'), 
                  'my-route-name'
                 );
    
    $this->form->setAction($url);
    
    echo $this->form;
    
    0 讨论(0)
提交回复
热议问题