Cakephp,一个优雅的数量解决方案?

发布于 2024-09-03 04:15:26 字数 265 浏览 5 评论 0原文

我在 Cakephp 中有一个购物车系统,这个表有你常用的所有 maguffins:user_ids、product_ids、option_lists 等。也是有数量的。

我目前有一些糟糕的嵌套循环来检查记录是否与其中的任何记录相同,如果是,则在数量上添加一个。如果没有添加新的购物车项目。

该循环必须检查关联的列表项和产品选项,因此它非常深入。

我想知道是否有一种更优雅的方法来检查数据库中的两个购物车项目是否相似(除了数量之外的所有内容)。

干杯!

I have a shopping cart system in Cakephp, this table has all your usual maguffins: user_ids, product_ids, option_lists ect. It also has quantity.

I currently have some awful nested loops to check if the record is the same as any in there, if so add one to the quantity. If not add a new cart item.

This loop has to check associated list items and product options, so it goes quite deep.

What I'm wondering is if there is a more elegant way of checking to see if two cart items in a database are similar (everything except for quantity).

Cheers!

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

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

发布评论

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

评论(1

何以笙箫默 2024-09-10 04:15:26

听起来像 Set 实用程序可能能够帮助。我从未将它用于此目的,但也许 Set::isEqual()Set::diff() 会让您到达您想要的位置。

Sounds like something that the Set utility might be able to help with. I've never used it for this purpose, but perhaps Set::isEqual() or Set::diff() would get you where you want to be.

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