我正在尝试为我的RESTful Apigility API创建一个index.phtml页面。我采取的步骤是 1)创建一个DB连接的API,无论它路由“帐户” 2)使用邮递员访问/ account帐户API,并获得HAL和JSON以响应工作 3)在3个视图模型的内容协商下创建一个新的“选择器”。 “ZF \ ContentNegotiation \ ViewModel”,“ZF \ Hal \ View \ HalJsonModel”和“Zend \ View \ Model \ ViewModel” 4)在accounts API中选择新创建的选择器 5)在Account / view / index.phtml下创建了一个index.phtml,代码为“
'view_manager' => array(
'template_path_stack' => array(
'account' => __DIR__ . '/../view',
),
),
到module.config.php
7)使用邮递员和访问/帐户 接受application / json //有效 接受text / html //不起作用
如果有人可以帮助获取index.phtml模板以使用宁静的数据库连接API,那将会很棒
答案 0 :(得分:0)
如果您想使用ViewModel
,请选择RPC API。您可以按照此文档
RPC API
https://apigility.org/documentation/intro/getting-started#create-an-rpc-service