gpt4 book ai didi

php - phalconphp中的多模块MVC结构

转载 作者:可可西里 更新时间:2023-10-31 22:11:37 27 4
gpt4 key购买 nike

您好,我正在尝试为前端和后端实现一个多模块 MVC,就像 phalconphp documentations 中的那样 。但我无法让它发挥作用。大约一个小时,但我真的不明白问题出在哪里。

谁能指导我如何为前端和后端制作多模块 mvc 的框架。

我应该在 Moudle.php 中为前端和后端添加什么
还有我应该在位于 public/index.php 的 Bootstrap 文件中放入什么
以及我需要的任何额外文件或信息。

最佳答案

GitHub 上的 phalcon/mvc 存储库中的代码会有所帮助。你可以在这里找到它: https://github.com/phalcon/mvc/tree/master/multiple

更具体地说,您会对:

https://github.com/phalcon/mvc/blob/master/multiple/public/index.php https://github.com/phalcon/mvc/blob/master/multiple/apps/backend/Module.php

我倾向于在我的 index.php 中使用它:

$application = new \Phalcon\Mvc\Application($di);

// Register the installed modules
$application->registerModules(
array(
'web' => array(
'className' => 'Apps\Web\Module',
'path' => '../apps/web/Module.php',
)
)
);

echo $application->handle()->getContent();

在我的 Module.php 中:

<?php

namespace Apps\Web;

use Phalcon\Loader;
use Phalcon\Mvc\Dispatcher;
use Phalcon\Mvc\View;
use Phalcon\Mvc\ModuleDefinitionInterface;

class Module implements ModuleDefinitionInterface
{

/**
* Register a specific autoloader for the module
*/
public function registerAutoloaders()
{

$loader = new Loader();

$loader->registerNamespaces(
array(
'Apps\Web\Controllers' => '../apps/web/controllers/',
)
);

$loader->register();
}

/**
* Register specific services for the module
* @param \Phalcon\DI\FactoryDefault $di
*/
public function registerServices($di)
{
//Registering a dispatcher
$di->set(
'dispatcher',
function() use ($di) {
$eventsManager = $di->getShared('eventsManager');
$dispatcher = new Dispatcher();
$dispatcher->setDefaultNamespace('Apps\Web\Controllers');
$eventsManager->attach(
'dispatch:beforeException',
function($event, $dispatcher, $exception) use ($di) {
/* @var $dispatcher \Phalcon\Mvc\Dispatcher */
switch ($exception->getCode()) {
case Dispatcher::EXCEPTION_HANDLER_NOT_FOUND:
case Dispatcher::EXCEPTION_ACTION_NOT_FOUND:
$di->set('lastException', $exception);
$dispatcher->forward(
array(
'module' => 'web',
'controller' => 'error',
'action' => 'notFound',
)
);
return false;
default:
$di->set('lastException', $exception);
$dispatcher->forward(
array(
'module' => 'web',
'controller' => 'error',
'action' => 'uncaughtException',
)
);
return false;
}
}
);
$dispatcher->setEventsManager($eventsManager);
return $dispatcher;
}
);
}

}

希望这对您有所帮助!

关于php - phalconphp中的多模块MVC结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23186222/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com