您好,登錄后才能下訂單哦!
本文小編為大家詳細(xì)介紹“Vue PC端怎么實現(xiàn)掃碼登錄功能”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“Vue PC端怎么實現(xiàn)掃碼登錄功能”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學(xué)習(xí)新知識吧。
目前大多數(shù)PC端應(yīng)用都有配套的移動端APP,如微信,淘寶等,通過使用手機APP上的掃一掃功能去掃頁面二維碼圖片進行登錄,使得用戶登錄操作更方便,安全,快捷。
掃碼登錄功能涉及到網(wǎng)頁端、服務(wù)器和手機端,三端之間交互大致步驟如下:
網(wǎng)頁端展示二維碼,同時不斷的向服務(wù)端發(fā)送請求詢問該二維碼的狀態(tài);
手機端掃描二維碼,讀取二維碼成功后,跳轉(zhuǎn)至確認(rèn)登錄頁,若用戶確認(rèn)登錄,則服務(wù)器修改二維碼狀態(tài),并返回用戶登錄信息;
網(wǎng)頁端收到服務(wù)器端二維碼狀態(tài)改變,則跳轉(zhuǎn)登錄后頁面;
若超過一定時間用戶未操作,網(wǎng)頁端二維碼失效,需要重新刷新生成新的二維碼。
二維碼內(nèi)容是一段字符串,可以使用uuid 作為二維碼的唯一標(biāo)識;
使用qrcode插件 import QRCode from 'qrcode'; 把uuid變?yōu)槎S碼展示給用戶
import {v4 as uuidv4} from "uuid"
import QRCode from "qrcodejs2"
let timeStamp = new Date().getTime() // 生成時間戳,用于后臺校驗有效期
let uuid = uuidv4()
let content = `uid=${uid}&timeStamp=${timeStamp}`
this.$nextTick(()=> {
const qrcode = new QRCode(this.$refs.qrcode, {
text: content,
width: 180,
height: 180,
colorDark: "#333333",
colorlight: "#ffffff",
correctLevel: QRCode.correctLevel.H,
render: "canvas"
})
qrcode._el.title = ''
使用前端計時器setInterval, 初始化有效時間effectiveTime, 倒計時失效后重新刷新二維碼
export default {
name: "qrCode",
data() {
return {
codeStatus: 1, // 1- 未掃碼 2-掃碼通過 3-過期
effectiveTime: 30, // 有效時間
qrCodeTimer: null // 有效時長計時器
uid: '',
time: ''
};
},
methods: {
// 輪詢獲取二維碼狀態(tài)
getQcodeStatus() {
if(!this.qsCodeTimer) {
this.qrCodeTimer = setInterval(()=> {
// 二維碼過期
if(this.effectiveTime <=0) {
this.codeStatus = 3
clearInterval(this.qsCodeTimer)
this.qsCodeTimer = null
return
}
this.effectiveTime--
}, 1000)
}
},
// 刷新二維碼
refreshCode() {
this.codeStatus = 1
this.effectiveTime = 30
this.qsCodeTimer = null
this.generateORCode()
}
},
前端向服務(wù)端發(fā)送二維碼狀態(tài)查詢請求,通常使用輪詢的方式
定時輪詢:間隔1s 或特定時段發(fā)送請求,通過調(diào)用setInterval(), clearInterval()來停止;
長輪詢:前端判斷接收到的返回結(jié)果,若二維碼仍未被掃描,則會繼續(xù)發(fā)送查詢請求,直至狀態(tài)發(fā)生變化(失效或掃碼成功)
Websocket:前端在生成二維碼后,會與后端建立連接,一旦后端發(fā)現(xiàn)二維碼狀態(tài)變化,可直接通過建立的連接主動推送信息給前端。
使用長輪詢實現(xiàn):
// 獲取后臺狀態(tài)
async checkQRcodeStatus() {
const res = await checkQRcode({
uid: this.uid,
time: this.time
})
if(res && res.code == 200) {
let codeStatus - res.codeStatus
this.codeStatus = codeStatus
let loginData = res.loginData
switch(codeStatus) {
case 3:
console.log("二維碼過期")
clearInterval(this.qsCodeTimer)
this.qsCodeTimer = null
this.effectiveTime = 0
break;
case 2:
console.log("掃碼通過")
clearInterval(this.qsCodeTimer)
this.qsCodeTimer = null
this.$emit("login", loginData)
break;
case 1:
console.log("未掃碼")
this.effectiveTime > 0 && this.checkQRcodeStatus()
break;
default:
break;
}
}
},
讀到這里,這篇“Vue PC端怎么實現(xiàn)掃碼登錄功能”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領(lǐng)會,如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。