cakephp 显示来自该 id 的记录

发布于 2024-11-04 04:12:49 字数 97 浏览 1 评论 0原文

我有一张桌子,上面有产品。在我的视图页面中,我只想显示属于该客户的产品。客户编号位于 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 技术交流群。

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

发布评论

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

评论(1

鸩远一方 2024-11-11 04:12:49

您的 路由 应自动将此值作为 $id 传递给方法代码>.特别是如果您烘焙您的控制器。

在此方法中,您可以运行 find() 方法,如下所示。

$customer = $this->Customer->find('first', array('conditions' => array('Customer.id' => $id)));

如果不了解有关您的应用程序的更多信息,则很难提供准确的代码。但请查看链接,希望这能让您走上正轨。

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.

$customer = $this->Customer->find('first', array('conditions' => array('Customer.id' => $id)));

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.

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