“购物车”是什么概念?
请问“购物车”是什么概念?记录项目并进行计算?如果我想编写这样的程序,我应该采取哪种方法:使用客户端语言还是服务器端语言?我认为如果我使用服务器端语言会安全,但是除了使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您不想使用 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