저는 응용 및 사용자 모듈과 함께 ZF3을 사용하고 있습니다. 응용 프로그램 모듈은 로그인 정보가없는 시작 페이지로 내 색인 페이지를 포함하는 기본로드 모듈입니다. 사용자 모듈에는 로그인 페이지와 모든 사용자 인증 항목이 있습니다.ZF3 다른 모듈의 다른 컨트롤러로 리디렉션
사용자 모듈 색인 페이지의 로그인 페이지로 리디렉션하기 위해 응용 프로그램 모듈 색인 작업 페이지에 단추를 넣어야합니다.
답변을 this post에서 사용하려고하는데 작동하지 않습니다.
젠드 \ ServiceManager에 \ 예외 \의 ServiceNotFoundException
파일 :
/path/to/project/vendor/zendframework/zend-servicemanager/src/AbstractPluginManager.php 133
메시지 :
<p>
<a class="btn btn-default" href="
<?= $this->getHelper(redirector)->gotoSimple('index', 'index', 'user'); ?>">
Other module index action
</a>
</p>
이
다음과 같은 오류를 선도하고 있습니다A plugin by the name "getHelper" was not found in the plugin manager Zend\View\HelperPluginManager
ZF3를 사용하는 다른 모듈의 작업으로 어떻게 리디렉션해야합니까?
내게 알려주세요. 감사. – Mendes