这里生成的 url 是什么
我从这一行收到路由错误。有人可以告诉我这里构建的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有人可以告诉您 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:
locate
parameter to "rom"locate
routeRegarding 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"