我正在使用Zend Framework 2和Angular.js开发一个应用程序。
我有一个Rest API模块,并且还使用一个标准模块返回JsonModel更具体的东西(问题就在那里)。
在我的module.config.php中,我以这种方式配置了我的view_manager:
'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',
'portal/index/index' => __DIR__ . '/../view/portal/index/index.phtml',
'error/404' => __DIR__ . '/../view/error/404.phtml',
'error/index' => __DIR__ . '/../view/error/index.phtml',
),
'template_path_stack' => array(
__DIR__ . '/../view',
),
'strategies' => array(
'ViewJsonStrategy'
)
),
之前如果我这样做:
...
return new JsonModel(array('teste'=>true));
...
回报是:
{"teste":true}
但我不知道是什么原因,现在返回看起来像这样:
{"children":[],"options":[],"template":"portal-admin\/transportadora\/verifica-cnpj-cadastrado","terminate":true,"variables":{"teste":true},"append":false}
我在课堂参考中找到了任何答案,但一无所获。
有人可以帮我吗?
感谢。
编辑:我只想返回“变量”。答案 0 :(得分:0)
解决!
问题出在我的控制器上。
当您将控制器扩展到AbstractRestFulController时,返回将是这个(带有子项,模板,变量)。你只需要处理结果。
但在我的情况下,我扩展了错误的类,我需要扩展AbstractActionController而不是AbstractRestfulController。
所以结果不同。
谢谢大家!