Kohana 3 - 从 URL 获取价值
我有登录功能,可以检查会话,如果不存在,用户将通过 Request::instance()->redirect('managers/error/1');
重定向管理控制器中的错误操作我无法获取代表特定错误消息的值 1。 如何从 url 中捕获值“1”,我只使用标准路由。
I have log in functionality that will check for a session, if it not there the user will be redirected via Request::instance()->redirect('managers/error/1');
In the error action in the managers controller I can't get the value 1 which represents a specific error msg.
How can I capture the value "1" from the url, I'm only using standard routes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据您的路线,您可以这样做
或者您可以显式设置路线
然后您可以在方法/操作中使用
Depending on your route, you could do
Or you could set up a route explicitly
Then you could use in the method / action