Kohana v3 - 通过 Request::instance()->redirect() 传递变量
[Kohana v3] 有没有办法通过 Request::instance()->redirect() 将变量传递给视图。什么是一个好的替代方案?谢谢!
[Kohana v3] Is there any way to pass variables to the views through Request::instance()->redirect(). What would be a good alternative? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在调用重定向之前,请在控制器中执行以下操作:
然后在视图页面中执行这些操作以获取值
。
Before you call the redirect do these in your controller:
then in your view page to get the value you do these
that's all.
如果这对您有用,则看似简单:
Request::instance()->redirect('/dashboard?err=incomplete');
没有理由您不能使用任意数量的 $ 构建字符串_GET 参数。
Deceptively easy if this works for you:
Request::instance()->redirect('/dashboard?err=incomplete');
No reason you can't build the string using any number of $_GET parameters.