当我尝试启动相册应用程序时,会显示一条错误消息:
致命错误:找不到类'专辑\控制器\专辑控制器' C:\ XAMPP \ htdocs中\ ZendSkeletonApplication \供应商\ zendframework \ zendframework \库\ Zend的\的ServiceManager \ AbstractPluginManager.php 在第170行
这是我的module.config.php文件代码
<?php
return array(
'controllers' => array(
'invokables' => array(
'Album\Controller\Album' => 'Album\Controller\AlbumController',
),
),
// Added to make router
'router' => array(
'routes' => array(
'album' => array(
'type' => 'segment',
'options' => array(
'route' => '/album[/][:action][/:id]',
'constraints' => array(
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
'id' => '[0-9]+'
),
'defaults' => array(
'controller' => 'Album\Controller\Album',
'action' => 'index',
),
),
),
),
),
'view_manager' => array(
'template_path_stack' => array(
'album' => __DIR__ . '/../view',
),
),
);
这是AlbumController.php文件代码:
<?php
namespace Album\Controller;
use Zend\Mvc\Controller\AbstractActionController;
use Zend\View\Model\ViewModel;
class AlbumController extends AbstractActionController {
protected $albumTable;
public function indexAction() {
return new ViewModel(array(
'album' => $this->getAlbumTable()->fetchAll(),
));
}
public function addAction() {
}
public function editAction() {
}
public function deleteAction() {
}
public function getAlbumTable () {
if (!$this->albumTable) {
$sm = $this->getServiceLocator();
$this->albumTable = $sm->get('Album\Model\AlbumTable');
}
return $this->albumTable;
}
}
答案 0 :(得分:1)
我知道你刚刚开始,所以我会参考 Martin Shwalbe 的代码,看看你是否有任何拼写错误。如果一切看起来都不错,那么您可能在访问它时遇到问题。
https://github.com/Hounddog/Album
希望这会有所帮助...