通过选择框过滤结果!
如何通过下拉选择按县、区、市过滤结果。
有没有办法以 Cake 方式做到这一点,因为目前我正在做经典的方式,通过将 Id 传递给 url,例如:
/sort/county_id/1/district_id/5
但这是非常糟糕的黑客,因为我必须爆炸 $this->here 并且不好事物。我不知道是否有像codeigniter中那样的uri类,所以我可以使用$this->uri->segment()。
事实上,我的问题是我需要查看 isset 是否然后通过它。
How can I filter Results by County,District,City with dropdown select.
Is there a way to do it in Cake way, because currently I'm doing it classic way, by passing Id to url, like:
/sort/county_id/1/district_id/5
But this is very bad hack, because I have to explode $this->here and not good thing. I don't know if there is uri class like in codeigniter, so I can play with $this->uri->segment().
In fact my problem is that I need to see if isset then pass it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您考虑过命名参数吗?
添加/删除链接的 Cake 命名 URL 参数
Have you considered named parameters?
Add/remove Cake named URL parameter for a link