商城專案日結

2021-10-03 10:47:13 字數 2217 閱讀 3823

**如下:

html

tp-link會員註冊

手機註冊

郵箱註冊

同意tp-link註冊協議

立即登入

css

.header

.header .container

.header .container img

.register

.register-container

.register-container-titile

.account-tab

.account-tab-item

.account-tab-item.active

.account-phone

.account-register-phone

.account-register-phone-input

.account-register-phone-contact-img

.account-register-phone-password

.account-register-phone-password-input

.account-register-phone-password2

.account-register-phone-password2-input

.account-register-phone-code

.account-register-phone-code-input

.account-register-phone-code-img

.account-register-phone-submit

.account-register-submit-word

.account-mail

.account-mail.visible

.account-mail-contact

/* .account-register-main-mail-contact-subtitle */

.account-mail-contact-input

.account-mail-contact-img

.account-mail-password

.account-mail-password-input

.account-mail-password2

.account-mail-password2-input

.account-mail-code

.account-mail-code-input

.account-mail-code-img

.account-mail-submit

.account-register-main-submit

.account-register-main-submit-word

js 主要是進行表單驗證的功能 和驗證碼的生成

server php檔案 rigister.php 向資料庫中新增新使用者

<?php 

// 1. 接收前端的引數

$username = $_post['username'];

$password = $_post['password'];

// 2. 去資料庫驗證

// 2-1. 連線資料庫

header('content-type: text/html;charset=utf-8;');

// 連線資料庫

$link = mysqli_connect('localhost', 'root', 'root', 'newdata');

// 執行 sql 語句了

// 執行插入的 sql 語句

$res = mysqli_query($link, "insert into `login` (`username`, `password`) values('$username', '$password')");

// 輸出結果看一下

// true 表示插入成功

// print_r($res);

if ($res) else

// // 把這關聯型陣列返回

print_r(json_encode($arr));

// echo json_encode($arr);

?>

商城專案總結

sso 單點登入系統 主要解決多系統同意登陸,基礎登陸都系統使用。使用技術 沒有頁面,只有介面 springmvc spring j redis 檢查使用者資訊是否存在 介面查詢資料庫是否由該資料 返回true或者false 註冊使用者 介面接收資料,寫入資料庫 使用者登入 介面接收登陸資料,先上資...

商城專案總結

該 專案從架構 業務 技術要點全方位考慮,使用現階段主流技術實現,涵蓋了springboot 2.3.0 mybatis 3.4.6 elasticsearch 7.6.2 rabbitmq 3.7.15 redis 5.0 mongodb 4.2.5 mysql5.7等技術,採用docker容器化...

商城專案 面試

1.利用 redis和cookie實現sso單點登入。怎麼實現的 當使用者第一次登陸時,伺服器動態生成乙個uuid,作為cookie的value,儲存在客戶端的 cookie c 裡 將使用者物件轉換成json串 使用fasterxml 和uuid一起儲存在redis裡 uuid為key,json為...