Table of Contents
回复讨论(解决方案)

购物车

Jun 23, 2016 pm 02:03 PM
shopping cart

购物车问题:某商品有最后一个,几个用户同时发现了,同一时刻下单,怎样保证不被多次购买?


回复讨论(解决方案)

同时精确到0.1毫秒,几率不高。

可以参考12306呀,有票的时候是可以让你点击进去,既是“加入购物车”,但是等付款的时候呢,提示“余票不足”,当然他的排队功能就没必要了。

不应该是付款的时候,应该是生成订单的时候,订单相当于合同

排队,事务锁定

做事务处理,如果是mysql请用innodb

下单的时候要检查库中存货,并非简单的购物车加一
虽然订单相当于合同,单订单也可以被乙方撕毁(就是不结账,你有什么办法?)

下单的时候要检查库中存货,并非简单的购物车加一
虽然订单相当于合同,单订单也可以被乙方撕毁(就是不结账,你有什么办法?)

唠叨说的情况现实中确实存在的,这个话题与技术无关,但可以谈谈自己的感受??
在淘宝购物我就经常遇到下单后才被卖方告知存货不足,往往是无奈另选或者撤单,这是国人常见的做法??协商为主,就算闹到法律层面,买方也没什么好处,没有订金就更是如此
但同样的事在洋人那里就行不通了,下单后无法供货,到法律层面卖方是要吃亏的,例如数倍定金赔付

我的看法是,虽然在国内很难追究单方面撕毁合同(买卖任意一方都是如此),但不应把自己置于理亏的局面
至于对恶意下单(例如去年的淘宝事件)是要从其他方面解决

所以要在 下单的时候检查库中存货,而且商品还需要有一个“已定货”属性
这样吃亏的是商家:订货的人不结账,需要的人买不到而转向别家

就像 12306 一样,说是无票了,列车空座率还很高

订货的人不结账,可以设定时间就和12306上面一样,或者提前短信或邮件提醒,然后管理员在后台,撤销该订单,这样做在订货人点击确认下单给予明确的提示。
数据库中要有一个临时表,存储已下的订单而未确认结账的产品信息,订货人确认下单的时候,首先判断该产品已售数+临时表中该产品数+该订货人选填数之和是不是大于该产品仓库总数,如果小于等于,订货人下单就往该临时表中添加记录,下单成功,做提示。该订单结账后删除临时表中该产品记录即可。

还有 结账后 要把临时表中的记录删除 减掉库存改产品数,上面的就不用设定产品已售数啦,直接判断临时表中该产品数+该订货人选填该产品数之和是否大于该产品剩余仓库总数。大致实现原理是这样的,很简单,你可以依照这个原理变换多个实现思路也好。另外做到给买家明确而友好的提示也很重要。

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to implement a simple shopping cart function in Java? How to implement a simple shopping cart function in Java? Nov 02, 2023 am 11:56 AM

How to implement a simple shopping cart function in Java? The shopping cart is an important feature of an online store, which allows users to add items they want to purchase to the shopping cart and manage the items. In Java, we can implement a simple shopping cart function by using object-oriented approach. First, we need to define a product category. This class contains attributes such as product name, price, and quantity, as well as corresponding Getter and Setter methods. For example: publicclassProduct

PHP implements shopping cart function PHP implements shopping cart function Jun 22, 2023 am 09:00 AM

In our daily lives, online shopping has become a very common way of consumption, and the shopping cart function is also one of the important components of online shopping. So, this article will introduce how to use PHP language to implement shopping cart related functions. 1. Technical background The shopping cart is a common function on online shopping websites. When users browse some products on a website, they can add those items to a virtual shopping cart for easy selection and management during the subsequent checkout process. A shopping cart usually includes the following basic functions: Add items:

PHP mall development skills: Design shopping cart and order synchronization functions PHP mall development skills: Design shopping cart and order synchronization functions Jul 30, 2023 pm 07:22 PM

PHP mall development skills: Design shopping cart and order synchronization functions In a mall website, shopping cart and orders are indispensable functions. The shopping cart is used for users to purchase products and save them to a temporary shopping cart, while the order is a record generated after the user confirms the purchase of the product. In order to improve user experience and reduce errors, it is very important to design a shopping cart and order synchronization function. 1. The Concept of Shopping Cart and Order A shopping cart is usually a temporary container used to store items purchased by users. Users can add products to the shopping cart for easy browsing and management.

How to implement shopping cart function using Redis and JavaScript How to implement shopping cart function using Redis and JavaScript Sep 21, 2023 pm 01:27 PM

How to use Redis and JavaScript to implement the shopping cart function. The shopping cart is one of the very common functions in e-commerce websites. It allows users to add items of interest to the shopping cart, making it convenient for users to view and manage purchased items at any time. In this article, we will introduce how to implement the shopping cart function using Redis and JavaScript, and provide specific code examples. 1. Preparation Before starting, we need to ensure that Redis has been installed and configured, which can be done through the official website [https:/

How to design the shopping cart table structure of the mall in MySQL? How to design the shopping cart table structure of the mall in MySQL? Oct 30, 2023 pm 02:12 PM

How to design the shopping cart table structure of the mall in MySQL? With the rapid development of e-commerce, shopping carts have become an important part of online malls. The shopping cart is used to save the products purchased by users and related information, providing users with a convenient and fast shopping experience. Designing a reasonable shopping cart table structure in MySQL can help developers store and manage shopping cart data effectively. This article will introduce how to design the shopping cart table structure of the mall in MySQL and provide some specific code examples. First, the shopping cart table should contain

How to implement a simple shopping cart function using PHP How to implement a simple shopping cart function using PHP Sep 24, 2023 am 09:13 AM

How to use PHP to implement a simple shopping cart function The shopping cart function is an essential part of an e-commerce website. It allows users to add items of interest to the shopping cart, and then proceed to checkout or continue browsing and adding items. This article will introduce how to use PHP to implement a simple shopping cart function and provide specific code examples. Creating the database and tables First, we need to create a database and a table to store the shopping cart data. CREATEDATABASEshopping_ca

Practical tutorial: Detailed explanation of shopping cart function with PHP and MySQL Practical tutorial: Detailed explanation of shopping cart function with PHP and MySQL Mar 15, 2024 pm 12:27 PM

Practical tutorial: Detailed explanation of the shopping cart function with PHP and MySQL. The shopping cart function is one of the common functions in website development. Through the shopping cart, users can easily add the goods they want to buy to the shopping cart, and then proceed with settlement and payment. In this article, we will detail how to implement a simple shopping cart function using PHP and MySQL and provide specific code examples. To create a database and data table, you first need to create a data table in the MySQL database to store product information. The following is a simple data table

How to implement the Java switch grocery shopping system with shopping cart quantity reminder function How to implement the Java switch grocery shopping system with shopping cart quantity reminder function Nov 04, 2023 am 09:03 AM

How to realize the Java switch grocery shopping system with the shopping cart quantity reminder function. With the rapid development of the Internet, e-commerce is becoming more and more popular. More and more people are beginning to shop through mobile phones or computer web pages, enjoying a convenient and efficient shopping experience. In the shopping process, the shopping cart is an indispensable tool. It facilitates users to put their favorite products into a temporary "shopping basket" and then proceed to settlement when the order is confirmed. However, during online shopping, sometimes users forget that there are already several items in the shopping cart. So when designing a shopping cart

See all articles