我正在使用Zend Framework 3,我有一个控制器,当hasIdentity
为true
(工作)时,它会路由到视图
如何在重定向中包含变量(例如$myVar
),以便在我的视图中使用它?
if ($this->authService->hasIdentity()) {
$myVar = "some data I want to pass to my view";
return $this->redirect()->toRoute('auth/welcome');
}
我如何在我的视图中访问它?
答案 0 :(得分:2)
有几种方法:
return $this->redirect()->toRoute('auth/welcome', [
'message' => 'some data I want to pass to my view',
]);
希望这有效......