cakephp 显示来自该 id 的记录
我有一张桌子,上面有产品。在我的视图页面中,我只想显示属于该客户的产品。客户编号位于 URL 末尾,例如 /12 或 /45 等 我该怎么办呢。我对 cakephp 很陌生 扬克斯
I have a table that has products. In my view page I want to show only the products that belong to that customer. the customer number is in the url at end like /12 or /45 etc
How can I do that. I am very new to cakephp
yhanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的 路由 应自动将此值作为
$id 传递给方法代码>.特别是如果您烘焙您的控制器。
在此方法中,您可以运行 find() 方法,如下所示。
如果不了解有关您的应用程序的更多信息,则很难提供准确的代码。但请查看链接,希望这能让您走上正轨。
Your routes should automatically pass the method this value as
$id
. Especially if you baked your controllers.Within this method you could run the find() method like the following.
It's difficult providing exact code without knowing more about your app. But check out the links and hopefully that will put you on the path.