我是Zend Framework的新手,我正在尝试使用Zend Form制作表单。在那个表格中我想要国家,州和城市的级联下降。我填写了国家/地区的数据库,但我不知道如何通过获取国家/地区ID来填写州的下拉列表。
提前致谢。
答案 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_From
,ID
或classes
,否则与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.)
}