0

嗨,我是 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

我想要添加用户表单中的组下拉列表提前谢谢

4

1 回答 1

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'
        ),
    );

}

现在我可以在我的应用程序的任何地方调用这个服务。例如,在我的用户控制器中,我有一个名为“角色”的选择选项来设置用户角色。

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);
于 2013-05-31T10:54:43.940 回答