首先,我們需要建立一個資料庫來儲存我們的商品和訂單資訊。複製並貼上下列SQL程式碼到phpMyAdmin或其他MySQL客戶端中,即可建立資料庫:
CREATE DATABASE cart
DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
然後,
然後,我們需要建立兩個表格來儲存商品和訂單資訊。下述SQL語句是建立「products」和「orders」兩個表的: CREATE TABLE products ( product_id INT PRIMARY KEY, product_name VARCHAR(50), price DECIMAL(10,2) ); CREATE TABLE orders ( order_id INT PRIMARY KEY, product_id INT, order_date DATE, amount INT, FOREIGN KEY (product_id) REFERENCES products(product_id) );
CREATE TABLE products ( id int(11) NOT NULL AUTO_INCREMENT, name varchar(255) NOT NULL, description text NOT NULL, price float NOT NULL, PRIMARY KEY (id) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE orders ( id int(11) NOT NULL AUTO_INCREMENT, user_id int(11) NOT NULL, product_id int(11) NOT NULL, quantity int(11) NOT NULL, created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
現在,我們需要設定我們的應用程式。使用Composer安裝ThinkPHP框架:
composer create-project topthink/think tp5 --prefer-dist
接著,將下面的程式碼複製並貼上到tp5/application/common.php檔案裡。全域幫助函數「getCart」將會被創建,以取得使用者購物車資訊
<?php use app\index\model\Cart; function getCart() { $user_id = 1; // 此处默认用户ID为1,实际应用中应该从会话中获取用户ID $cart = Cart::where('user_id', $user_id)->select(); return $cart; }
接下來,我們需要建立一個名為「Cart」的模型來管理使用者購物車中的項目。
<?php namespace app\index\model; use think\Model; class Cart extends Model { protected $table = 'orders'; static function add($product_id, $quantity) { $user_id = 1; // 此处默认用户ID为1,实际应用中应该从会话中获取用户ID $order = new Cart(); $order->user_id = $user_id; $order->product_id = $product_id; $order->quantity = $quantity; $order->save(); } static function remove($id) { Cart::destroy($id); } }
我們現在能夠透過使用「Cart」模型在應用程式中新增或刪除購物車中的商品。使用以下程式碼將商品加入購物車:
Cart::add($product_id, $quantity);
而將商品從購物車中刪除的程式碼如下:
Cart::remove($id);
最後,我們需要建立一個名為「Cart」的控制器,並添加兩個方法:一個用於顯示購物車內容,另一個用於將商品添加到購物車。
<?php namespace app\index\controller; use app\index\model\Cart; class CartController extends BaseController { public function index() { $cart = getCart(); $this->assign('cart', $cart); return $this->fetch(); } public function add() { $product_id = input('post.product_id'); $quantity = input('post.quantity'); Cart::add($product_id, $quantity); $this->success('添加成功', url('index')); } }
以上是怎麼用ThinkPHP實現一個購物車功能的詳細內容。更多資訊請關注PHP中文網其他相關文章!