在zend框架中级联下拉

时间:2012-07-29 12:42:17

标签: php zend-framework zend-form

我是Zend Framework的新手,我正在尝试使用Zend Form制作表单。在那个表格中我想要国家,州和城市的级联下降。我填写了国家/地区的数据库,但我不知道如何通过获取国家/地区ID来填写州的下拉列表。

提前致谢。

2 个答案:

答案 0 :(得分:0)

你必须像这样设置一个关联数组:

$tCountries = array(
    1 => "France",
    2 => "USA"
);

$element = new Zend_Form_Element_Select();
$element->addMultiOptions($tCountries);

您可以在此处找到更多信息:http://framework.zend.com/manual/en/zend.form.standardElements.html#zend.form.standardElements.select

答案 1 :(得分:-2)

要动态加载国家/地区,您应该按照自己的方式使用它:

  

我之前使用标准的php和jquery

完成了这项工作

这与Zend_Form无关。您应该接受JSON服务(例如)接受CountryID并返回所有可用状态。

为此,您应该在jQuery部分连接<head>库。

$this->view->headScript()->appendFile('/js/jquery-1.7.3.js'); // In your Controller

jQuery脚本添加到template,以处理所有类似的事件:

$_form->inlineScript()->appendScript(' // my raw JS here');

$_form->inlineScript()->appendFile('js/dynamicCountry.js'); // if you want to keep it in separate file

除非分配正确的元素Zend_FromIDclasses,否则与names无关。

对于你的service,你可以做到。类似。假设网址为http://localhost/mysite/service/states/country/AT

/**
 * In your Service controller disable rendering for your layout and views
 */
public function preDispatch() {
        $this->_helper->layout()->disableLayout(); // if you have `layout` enabled
        $this->_helper->viewRenderer->setNoRender(true);
    }

和...欢迎

public function statesAction() {

    $request = $this->getRequest();

    /**
     * Country code transmitted through the parameter
     * @var string
     */
    $country = $request->getParam('country');

        // you are free to do whatever you want and return JSON (for e.g.)
}