“购物车”是什么概念?

发布于 2024-12-20 22:49:22 字数 120 浏览 0 评论 0原文

请问“购物车”是什么概念?记录项目并进行计算?如果我想编写这样的程序,我应该采取哪种方法:使用客户端语言还是服务器端语言?我认为如果我使用服务器端语言会安全,但是除了使用cookie之外如何存储信息并将数据存储在客户端硬盘中?

I would like to ask what is the concept of "shopping cart"? Record item and do the calculation? If I want to write such a program, which approach should I take: using client side language or server side language? I think it would secure if I use server side language, but how can I store the information other than using cookie and store the data in client's hard disk?

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

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

发布评论

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

评论(1

萌吟 2024-12-27 22:49:22

如果您不想使用 cookie,则需要向数据库表“购物车”提供产品 ID、数量、价格和用户 ID
当然,只有当用户登录时这才有效,这就是为什么更喜欢对未登录用户使用 cookie

if you don t want use cookie you need to feed your database table "cart" with the id product, the quantity, the price, and the user id
of course this work only if the user is logged, it s why prefer use cookie for unlogged users

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