我想捕捉基本路径,如视图。在视图中,通过使用辅助函数可以轻松获取基本路径,就像$this->basePath();
我想从模型中获取基本路径值一样。
问问题
4002 次
2 回答
5
将 getter/setter 添加到您的模型中:
测试模型.php
<?php
class TestModel
{
protected $_basePath;
/**
* @param string
*/
public function setBasePath($path)
{
$this->_basePath = $path;
}
}
现在在实例化模型时注入它
服务管理器配置:
'factories' => array(
'Application\Model\TestModel' => function($sm){
$model= new \Application\Model\TestModel();
// Just grab what we want from the view helper
$helper = $sm->get('viewhelpermanager')->get('basePath');
$path = $helper(); // or $helper('filenamehere') for added file path
// Alternatively you can just use the request to get the path
//$path = $sm->get('Request')->getBasePath();
$model->setBasePath($path);
return $model;
},
如果您的模型中有可用的服务管理器/服务定位器,您可以使用上述方法之一直接获取模型中的值。
$path = $serviceManager->get('Request')->getBasePath();
如果您查看 ViewHelper 是如何实例化的,您会看到它首先检查配置:
$config = $serviceLocator->get('Config');
if (isset($config['view_manager']) && isset($config['view_manager']['base_path'])) {
$basePath = $config['view_manager']['base_path'];
}
else {
$basePath = $serviceLocator->get('Request')->getBasePath();
}
于 2013-06-05T09:45:01.247 回答
0
我不知道如何在模型中做,但在控制器中你可以这样做:
<?php
$myUrl = $this->url()->fromRoute('home');
于 2013-06-05T08:25:17.520 回答