0

Zend のアルバムの例に基づいて、Zend Framework 2 管理 Web サイトを作成しました。デフォルトのコントローラーとして機能する HomeController ですべてが機能します。ただし、別のコントローラーを作成すると、ビューが読み込まれません。これは indexAction の私のコードです。

namespace Admin\Controller;

use Zend\Mvc\Controller\AbstractActionController;
use Zend\View\Helper\ViewModel;
use Admin\Model\Map\User;

class UserController extends AbstractActionController 
{
    protected $userTable;

    public function indexAction()
    {
        $users = $this->getUserTable()->fetchAll();

        $viewData = array(
            'users' => $users
        );

        $vm = new ViewModel($viewData);

        var_dump($vm);

        return $vm;
    }

    public function getUserTable()
    {
        if(!$this->userTable)
        {
            $sm = $this->getServiceLocator();

            $this->userTable = $sm->get('Admin\Model\Table\UserTable');
        }

        return $this->userTable;
    }
}

印刷するとすべてのデータが表示されたので、表のデータに問題はないと確信しています。ただし、 の結果var_dumpは常に次のようになります。

object(Zend\View\Helper\ViewModel)#280 (3) { ["current":protected]=> NULL ["root":protected]=> NULL ["view":protected]=> NULL }

しかし、行を削除すると、ビューはうまく読み込まれreturn $vm;ます。ViewModel を返さないとビューにデータを渡すことができないため、これはもちろん役に立ちません。

必要に応じて、これは module.config.php でのビュー マネージャーの設定です。

// View
    'view_manager' => array(
        'display_not_found_reason' => true,
        'display_exceptions'       => true,
        'doctype'                  => 'HTML5',
        'not_found_template'       => 'error/404',
        'exception_template'       => 'error/index',
        'template_map' => array(
            'layout/layout'           => __DIR__ . '/../view/layout/layout.phtml',
            'error/404'               => __DIR__ . '/../view/error/404.phtml',
            'error/index'             => __DIR__ . '/../view/error/index.phtml',
            // Admin page index
            'admin/home/index'        => __DIR__ . '/../view/admin/home/index.phtml',
            'admin/user/index'        => __DIR__ . '/../view/admin/user/index.phtml',
            'admin/ticket/index'      => __DIR__ . '/../view/admin/ticket/index.phtml',
            'admin/transaction/index' => __DIR__ . '/../view/admin/transaction/index.phtml',
            'admin/customer/index'    => __DIR__ . '/../view/admin/customer/index.phtml',
            'admin/payment/index'     => __DIR__ . '/../view/admin/payment/index.phtml',
            'admin/comment/index'     => __DIR__ . '/../view/admin/comment/index.phtml',
            'admin/appstat/index'     => __DIR__ . '/../view/admin/appstat/index.phtml',
            'admin/sysstat/index'     => __DIR__ . '/../view/admin/sysstat/index.phtml',
            'admin/account/index'     => __DIR__ . '/../view/admin/account/index.phtml',
        ),
        'template_path_stack' => array(
            'home'        => __DIR__ . '/../view',
            'user'        => __DIR__ . '/../view',
            'ticket'      => __DIR__ . '/../view',
            'transaction' => __DIR__ . '/../view',
            'customer'    => __DIR__ . '/../view',
            'payment'     => __DIR__ . '/../view',
            'comment'     => __DIR__ . '/../view',
            'appstat'     => __DIR__ . '/../view',
            'sysstat'     => __DIR__ . '/../view',
            'account'     => __DIR__ . '/../view',
        ),
    ),

どこが間違っているのか教えてください。ありがとうございました。

4

1 に答える 1

3

Zend\View\Helper\ViewModelこれを提供するヘルパーViewModel( )を使用したと思います

object(Zend\View\Helper\ViewModel)#280 (3) { ["current":protected]=> NULL ["root":protected]=> NULL ["view":protected]=> NULL }

Zend\View\Model\ViewModel以下のように、ヘルパーの代わりにモデル ViewModel () を使用してください。

use Zend\View\Model\ViewModel;

これがあなたを助けることを願っています!

于 2013-11-05T07:02:31.670 に答える