vue中使用el-dialog + axios 實現攔截器
1.el-dialog 元件
el-dialog 是element的彈出對話方塊元件,專案中用的element元件庫,需要做一個當cookie超時的時候彈出登入的對話方塊,就用到了el-dialog.
先介紹一下el-dailog元件吧,官網介紹
<template>
<el-button type="text" @click="dialogFormVisible = true">開啟巢狀表單的 Dialog</el-button>
<el-dialog title="收貨地址" :visible.sync="dialogFormVisible">
<el-form :model="form">
<el-form-item label="活動名稱" :label-width="formLabelWidth">
<el-input v-model="form.name" auto-complete="off"></el-input>
</el-form-item>
<el-form-item label="活動區域" :label-width="formLabelWidth">
<el-select v-model="form.region" placeholder="請選擇活動區域">
<el-option label="區域一" value="shanghai"></el-option>
<el-option label="區域二" value="beijing"></el-option>
</el-select>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click="dialogFormVisible = false">取 消</el-button>
<el-button type="primary" @click="dialogFormVisible = false">確 定</el-button>
</div>
</el-dialog>
</template>
<script>
export default {
data() {
return {
dialogFormVisible: false, // 通過改屬性控制是否彈出對話方塊
form: {
name: '',
region: '',
date1: '',
date2: '',
delivery: false,
type: [],
resource: '',
desc: ''
},
formLabelWidth: '120px'
};
}
};
</script>
2.axios
Axios 是一個基於 promise 的 HTTP 庫,可以用在瀏覽器和 node.js 中 。中文文件
axios支援的特性:
- 從瀏覽器中建立 XMLHttpRequests
- 從 node.js 建立 http請求
- 支援 PromiseAPI
- 攔截請求和響應
- 轉換請求資料和響應資料
- 取消請求
- 自動轉換 JSON 資料
- 客戶端支援防禦 XSRF
重點使用一下攔截請求和響應。
官方示例:
// 新增請求攔截器
axios.interceptors.request.use(function (config) {
// 在傳送請求之前做些什麼
return config;
}, function (error) {
// 對請求錯誤做些什麼
return Promise.reject(error);
});
// 新增響應攔截器
axios.interceptors.response.use(function (response) {
// 對響應資料做點什麼
return response;
}, function (error) {
// 對響應錯誤做點什麼
return Promise.reject(error);
});
3.在根元件中新增攔截器,並引入彈框元件
<template>
<div id="app">
<router-view/>
<el-dialog
title="登陸提示"
:visible.sync="dialogVisible"
center
width="40%">
<LoginDialog @submitAfter="submitAfter"/> // 子元件給父元件傳值,子元件使用$emit
</el-dialog>
</div>
</template>
<script>
// 引入彈框元件
import LoginDialog from "@/components/LoginDialog";
export default {
name: "App",
components: { LoginDialog },
data() {
return {
dialogVisible: false
};
},
methods: {
// 正常登入後關閉彈框
submitAfter() {
this.$data.dialogVisible = false;
},
// 路由元件name不是Login並且 cookie中的status狀態過期,彈出登入彈框
checkSession() {
if (this.$route.name !== "Login" && !this.$cookies.get("status")) {
this.$data.dialogVisible = true;
return false;
}
return true;
}
},
mounted() {
// 根元件載入就創一個攔截器
this.$ajax.interceptors.request.use(
config => {
// 如果不是登入和退出的介面,就正常響應
if (config.url.indexOf("login.do") !== -1 || config.url.indexOf("logout.do") !== -1) {
return config;
// 如果 定義的路由元件name不是Login並且 cookie中的status狀態過期,進行攔截提示
} else if (!this.checkSession()) {
return Promise.reject(new Error("會話過期,請重新登入"));
}
// 正常請求,不進行攔截
return config;
},
function(error) {
return Promise.reject(error);
}
);
// 10s 檢查一次cookie中的status是否過期。過期就進行攔截,並進行彈框。
setInterval(() => {
this.checkSession();
}, 10000);
}
};
</script>
<style>
</style>
4.彈框元件
<template>
<el-form :model="ruleForm" status-icon :rules="rulesLogin" ref="ruleForm" label-width="100px" class="loginForm">
<el-form-item label="使用者名稱" prop="username">
<el-input v-model="ruleForm.username"></el-input>
</el-form-item>
<el-form-item label="密碼" prop="pass">
<el-input type="password" v-model="ruleForm.pass" auto-complete="off" @keyup.enter.native="submitForm('ruleForm')"></el-input>
</el-form-item>
<el-form-item>
<span class="searchButton" @click="submitForm('ruleForm')">登 錄</span>
<span class="searchButton1" @click="resetForm('ruleForm')">重 置</span>
</el-form-item>
</el-form>
</template>
<script>
import store from '../store'
import { mapActions } from "vuex";
import { systemUrl } from "./../urlCfg.js";
export default {
data() {
return {
// 表單資料
ruleForm: {
pass: "",
username: ""
},
// 表單驗證規則
rulesLogin: {
pass: [
{
validator: validatePass,
trigger: "blur"
}
],
username: [
{
validator: checkUsername,
trigger: "blur"
}
]
}
};
},
store, // vuex狀態
methods: {
...mapActions(["setUser"]),
// 提交表單
submitForm(formName) {
// 驗證表單
this.$refs[formName].validate(valid => {
if (valid) {
// 傳送請求
this.$ajax({
method: "post",
url: systemUrl.login,
data: {
userName: this.$data.ruleForm.username,
password: this.$data.ruleForm.pass
}
})
.then(({data}) => {
if (data.message === "success") {
this.$data.error = ""
// 將登入狀態 寫入cookkie 並設定儲存週期
this.$cookies.set("status", "logined", 30 * 60)
// 將登入返回的資料儲存到vuex中
this.setUser(data.data);
this.$message({
title: '提示',
type: 'success',
message: '登入成功!'
});
// 登入成功後將 通過子元件向父元件傳值,關閉彈框
this.$emit("submitAfter");
this.$refs[formName].resetFields();
} else {
this.$message({
title: '提示',
type: 'info',
message: '使用者名稱或密碼錯誤!請重新登入!'
});
}
});
} else {
return false;
}
});
},
resetForm(formName) {
this.$refs[formName].resetFields();
}
}
};
</script>
<style lang="scss" scoped>
</style>
上面主要是用了axios的請求攔截,響應攔截同理,官網有介紹。
相關文章
- vue.js新增攔截器,實現token認證(使用axios)Vue.jsiOS
- vue中用axios攔截器攔截請求和響應VueiOS
- 前端架構之vue+axios 前端實現登入攔截(路由攔截、http攔截)前端架構VueiOS路由HTTP
- axios攔截器iOS
- axios 攔截器iOS
- axios 攔截器 的使用方法iOS
- axios原始碼分析——攔截器iOS原始碼
- SpringMVC中的攔截器Interceptor實現SpringMVC
- Java實現的攔截器Java
- Java Struts 實現攔截器Java
- Spring MVC 中的攔截器的使用“攔截器基本配置” 和 “攔截器高階配置”SpringMVC
- React、Axios、MockJs實現Ajax的請求攔截ReactiOSMockJS
- Struts2中攔截器的簡單實現
- SpringMVC使用攔截器實現許可權控制SpringMVC
- Axios、axios攔截器、fetch-jsonp ——0807iOSJSON
- Spring Boot中攔截器的使用Spring Boot
- Mybatis 分頁:Pagehelper + 攔截器實現MyBatis
- Struts2攔截器實現原理
- Mybatis中的攔截器MyBatis
- 【axios】XHR的ajax封裝+axios攔截器呼叫+請求取消iOS封裝
- 攔截器,攔截器棧總結
- SpringBoot中的過濾器和攔截器的實現Spring Boot過濾器
- 解決在.net8 WebAPI中 使用AbstractInterceptorAttribute 實現AOP 攔截器WebAPI
- 基於node Express 攔截器的實現Express
- vue通過vue-router攔截實現登入驗證Vue
- axios的全域性攔截之axios.interceptorsiOS
- SSM專案使用攔截器實現登入驗證功能SSM
- grpc中的攔截器RPC
- SpringMVC中的攔截器SpringMVC
- Flume內建攔截器與自定義攔截器(程式碼實戰)
- Autofac實現攔截器和切面程式設計程式設計
- 【Struts2】:攔截器實現方法過濾
- SpringBoot攔截器中獲取註解、攔截器中注入ServiceSpring Boot
- 一比一還原axios原始碼(五)—— 攔截器iOS原始碼
- SpringBoot實現過濾器、攔截器與切片Spring Boot過濾器
- 基於原生fetch封裝一個帶有攔截器功能的fetch,類似axios的攔截器封裝iOS
- MyBatis攔截器MyBatis
- Mybatis 攔截器MyBatis