このようにページがレンダリングされる前に実行するコードがありますModule.php
。
$eventManager->attach(MvcEvent::EVENT_RENDER, function(MvcEvent $event) {
/** @var ServiceManager $sm */
$sm = $event->getParam('application')->getServiceManager();
$logger = $sm->get(LogService::class)->getLogger();
$themeResolver = $sm->get(ThemeResolveService::class);
$df = $sm->get(DataFetchService::class);
$params = $sm->get('ControllerPluginManager')->get('params');
$security = $sm->get(SecurityService::class);
try {
$cleanedParams = $security->clean($params->fromRoute());
} catch (\Exception $e) {
echo $e->getMessage();
$logger->info($e->getMessage());
die();
}
/** theme resolving code **/
}
私が抱えている問題は、次の行にあります。
$cleanedParams = $security->clean($params->fromRoute());
$params->fromRoute()
ほとんどの場合は機能しますが、サードパーティの API からアプリケーションを呼び出すと、このエラーが発生することがあります。
Controllers must implement Zend\Mvc\InjectApplicationEventInterface to use this plugin
通話に違いはありません。このエラーが何を表しているのかを明確にする必要があるだけなので、アプリケーションの設計を変更する必要がある場合は変更する必要があります。