嗨,我是zend框架中的新手。我创建了两个模块名称组和用户。现在我想要添加用户表单中的组下拉菜单,所以你能告诉我如何获得这个值? 下面我已经改进了文件结构
module
-user
-config
-src
-User
- Controller
- Form
- Model
-view
-user
- user
- index.phtml
- add.phtml
- edit.phtml
-group
-config
-src
-Group
- Controller
- Form
- Model
-view
-user
- user
- index.phtml
- add.phtml
- edit.phtml
我希望添加用户表单中的组下拉列表 提前致谢
答案 0 :(得分:1)
以下是一个例子。
我创建了一个角色服务来检索所有可用的角色
public function toBasicArray($aI_roles = null){
if ( $aI_roles == null ){
$aI_roles = $this->getRoles();
}
foreach ($aI_roles as $role ){
$as_roles[$role->getId()] = $role->getName();
}
return $as_roles;
}
public function getAvailableUserRoles(){
$aI_roles = $this->I_roleRepository->getAvailableUserRoles();
return $this->toBasicArray($aI_roles);
}
接下来,我在Role Module.php
中注册了此服务public function getServiceConfig() {
return array(
'factories' => array(
'Users\Service\RoleService' => 'Users\Service\RoleServiceFactory'
),
);
}
现在我可以在我的应用程序中随处调用此服务。对于我的用户控制器中的exaple,我有一个名为“role”的选项来设置用户角色。
public function __construct($I_userService, $I_roleService, $I_userForm) {
$this->I_userService = $I_userService;
$this->I_roleService = $I_roleService;
$this->I_userForm = $I_userForm;
$this->I_userForm->get('role')->setValueOptions($this->I_roleService->getAvailableUserRoles());
}
在用户表单中,我将选择选项设置为:
$I_role = new Element\Select('role');
$I_role->setLabel('Ruolo');
$this->add($I_role);