ThinkPHP MVC(Model-View-Controller)是一種輕量級的Web開發框架,它可以幫助開發者快速構建Web應用程序。在電商領域,ThinkPHP MVC可以應用于多個方面,如用戶管理、商品展示、訂單處理、支付系統等。以下是一個簡單的應用案例:
假設我們要開發一個小型的電商網站,該網站需要實現以下功能:
/application
/common
/controller
/model
/view
/admin
/controller
/model
/view
/index
/controller
/model
/view
/api
/controller
/model
/view
/public
/static
/css
/js
/img
/index.php
/extend
/runtime
/vendor
/build.php
/composer.json
/LICENSE.txt
/README.md
字段名 | 類型 | 說明 |
---|---|---|
id | int | 主鍵 |
username | varchar | 用戶名 |
password | varchar | 密碼 |
varchar | 郵箱 | |
created_at | datetime | 創建時間 |
updated_at | datetime | 更新時間 |
字段名 | 類型 | 說明 |
---|---|---|
id | int | 主鍵 |
name | varchar | 商品名稱 |
price | decimal | 價格 |
description | text | 描述 |
category_id | int | 分類ID |
created_at | datetime | 創建時間 |
updated_at | datetime | 更新時間 |
字段名 | 類型 | 說明 |
---|---|---|
id | int | 主鍵 |
user_id | int | 用戶ID |
total_price | decimal | 總價 |
status | varchar | 狀態 |
created_at | datetime | 創建時間 |
updated_at | datetime | 更新時間 |
字段名 | 類型 | 說明 |
---|---|---|
id | int | 主鍵 |
order_id | int | 訂單ID |
product_id | int | 商品ID |
quantity | int | 數量 |
price | decimal | 單價 |
namespace app\index\controller;
use think\Controller;
use app\index\model\User as UserModel;
class UserController extends Controller
{
public function index()
{
$users = UserModel::all();
$this->assign('users', $users);
return $this->fetch();
}
public function login()
{
$username = input('post.username');
$password = input('post.password');
$user = UserModel::get($username);
if ($user && $user->password === md5($password)) {
session('user', $user);
return redirect('index');
} else {
return $this->fetch('login');
}
}
public function logout()
{
session('user', null);
return redirect('index');
}
}
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>用戶列表</title>
</head>
<body>
<h1>用戶列表</h1>
<table>
<tr>
<th>ID</th>
<th>用戶名</th>
<th>郵箱</th>
</tr>
{% for user in users %}
<tr>
<td>{{ user.id }}</td>
<td>{{ user.username }}</td>
<td>{{ user.email }}</td>
</tr>
{% endfor %}
</table>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>登錄</title>
</head>
<body>
<h1>登錄</h1>
<form action="/index/user/login" method="post">
<label for="username">用戶名:</label>
<input type="text" name="username" required><br>
<label for="password">密碼:</label>
<input type="password" name="password" required><br>
<button type="submit">登錄</button>
</form>
</body>
</html>
以上是一個簡單的電商網站應用案例,展示了如何使用ThinkPHP MVC框架來實現用戶管理功能。通過這個案例,你可以了解如何搭建基本的Web應用程序,并逐步實現更復雜的功能,如商品展示、訂單處理、支付系統等。