Cakephp,一个优雅的数量解决方案?
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来像
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 perhapsSet::isEqual()
orSet::diff()
would get you where you want to be.