Kohana 3 - 从 URL 获取价值

发布于 2024-09-03 01:54:02 字数 166 浏览 4 评论 0原文

我有登录功能,可以检查会话,如果不存在,用户将通过 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冷血 2024-09-10 01:54:02

根据您的路线,您可以这样做

public function action_error($id) {
   // $id will be your 1
}

或者您可以显式设置路线

Route::set('managers_errors', 'managers/error/<id>',  array('id' => '\d+'));

然后您可以在方法/操作中使用

$id = $this->request->param('id');

Depending on your route, you could do

public function action_error($id) {
   // $id will be your 1
}

Or you could set up a route explicitly

Route::set('managers_errors', 'managers/error/<id>',  array('id' => '\d+'));

Then you could use in the method / action

$id = $this->request->param('id');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文