这里生成的 url 是什么

发布于 2024-12-22 07:04:21 字数 129 浏览 3 评论 0原文

我从这一行收到路由错误。有人可以告诉我这里构建的 url 的最终形式是什么:

$this->url(array('locate'=>'rom'), 'locate', true);

I'm getting a Route error from this line. Can someone tell me what's the final form of the url being built here:

$this->url(array('locate'=>'rom'), 'locate', true);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

一百个冬季 2024-12-29 07:04:21

没有人可以告诉您 URL,因为您没有提供足够的详细信息,例如路由定义。

我可以告诉您的是,对 URL 帮助程序的调用将传递以下内容:

  • locate 参数设置为“rom”
  • 使用 locate 路由
  • 将所有参数重置为默认值。

关于最后一点;默认值将在路由定义中设置。如果它们没有在那里定义,它们将回退到框架默认值...

  • controller = "index"
  • action = "index"
  • module =“默认”

Nobody can tell you the URL as you have not provided enough details such as the route definition.

What I can tell you is that the call to the URL helper is passing the following:

  • Set the locate parameter to "rom"
  • Use the locate route
  • Reset all parameters to their defaults.

Regarding the last point; the defaults will be set in the route definition. If they are not defined there, they will fall back to the framework defaults of...

  • controller = "index"
  • action = "index"
  • module = "default"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文