0

我对 zend 框架很陌生。我想在 if 条件中声明一个表单对象。但我不知道这是否可能?我写了下面的代码:

public function editAction()
    {
        $modelUsers = new Model_Users();
        $userId = $this->_getParam('userId');

        if ($userId) {

            $populateData = array();

            $user = $modelUsers->fetch($userId);
        //  print_r($user); exit();

                if ($user instanceof Model_User) {
                    $populateData = $user->toArray();
                                    $form = $this->_geteditForm($user->email);
                }

                $form->populate($populateData);
            }

            $request = $this->getRequest();

            if ($request->isPost()) {

请让我知道我是否要去写路径。

提前致谢

4

1 回答 1

1

没关系,但是(假设它是某种杂物)如果 ID 丢失,最好重定向回列表或抛出异常。比你不需要关闭整个表格的条件。IE:

if (!$userId = $this->_getParam('userId')) {
    throw new Exception('Missing userId');
    //or
    $this->_helper->redirector('index');
}
于 2012-09-16T19:19:38.520 回答