我想从视图中访问应用程序配置。如何在ZF 2中实现这一目标?
答案 0 :(得分:9)
实际上,您不需要在视图中访问应用程序配置。在MVC中,视图负责显示/呈现数据(输出),不应包含任何业务或应用程序逻辑。
如果你真的想这样做,你可以简单地传递给你的控制器中的这样的东西:
<?php
namespace YourModule\Controller;
use Zend\View\Model\ViewModel;
// ...
public function anyAction()
{
$config = $this->getServiceLocator()->get('config');
$viewModel = new ViewModel();
$viewModel->setVariables(array('config' => $config ));
return $viewModel;
}
// ...
?>
所以在你的view.phtml文件中;
<div class="foo">
...
<?php echo $this->config; ?>
...
</div>
答案 1 :(得分:8)
您应该创建一个视图帮助器。
的config.php
<?php
namespace Application\View\Helper;
class Config extends \Zend\View\Helper\AbstractHelper
{
public function __construct($config)
{
$this->key = $config;
}
public function __invoke()
{
return $this->config;
}
}
Module.php或theme.config.php
return array(
'helpers' => array(
'factories' => array(
'config' => function ($sm) {
return new \Application\View\Helper\Config(
$sm->getServiceLocator()->get('Application\Config')->get('config')
);
},
)
),
);
然后您可以在任何视图中使用配置变量。
echo $this->config()->Section->key;
答案 2 :(得分:7)
使用ZF 2.2.1(不确定以前的版本是否可行),你可以添加你的帮助器,但不要注入任何东西
# module.config.php
...
'view_helpers' => array(
'invokables' => array(
'yourHelper' => 'Application\View\Helper\YourHelper',
),
), ...
并编写实施 YourHelper
界面的Zend\ServiceManager\ServiceLocatorAwareInterface
。您必须实现接口的两种方法(简单的setter和getter)。您现在可以访问服务定位器,并获取配置:
namespace Application\View\Helper;
class YourHelper implements Zend\ServiceManager\ServiceLocatorAwareInterface
{
public function __invoke()
{
$config = $this->getServiceLocator()->getServiceLocator()->get('Config');
// $config is the object you need
return $config;
}
public function getServiceLocator()
{
return $this->serviceLocator;
}
public function setServiceLocator(\Zend\ServiceManager\ServiceLocatorInterface $serviceLocator)
{
$this->serviceLocator = $serviceLocator;
return $this;
}
}
http://robertbasic.com/blog/working-with-custom-view-helpers-in-zend-framework-2
的更多信息答案 3 :(得分:0)
我使用控制器插件和视图助手创建了模块,用于读取控制器和视图中的配置。 GitHub link __ Composer link
通过composer安装后,您可以轻松使用它。
echo $this->configHelp('key_from_config'); //read specific key from config
$config = $this->configHelp(); //return config object Zend\Config\Config
echo $config->key_from_config;