Ajax?請求隊列解決方案并結(jié)合elementUi做全局加載狀態(tài)
目錄
ajax 文件入口
可發(fā)送 blob文檔流, form表單 與 通常json解決方案
結(jié)合 消息隊列(messagelist)與elementui(loading) 制作請求加載方案
擁有 post 默認(rèn)請求方案,也可依據(jù)傳入 修改請求方案(可能需要優(yōu)化傳參放入地址)
具有 請求超時提醒函數(shù),防止壞請求導(dǎo)致的加載不消失
配置有 notice(報錯) 控制方案,待后端解決消息分類(即: 開發(fā)者用與用戶用)
/** * @param {string} url 請求 `url` 地址 * @param {object, array, formdata} params 參數(shù)數(shù)據(jù) * @param {object, array, formdata} query url 拼接參數(shù) * @param {string} method post, get, add, delete * @param {boolean} notice false: 默認(rèn), 不直接顯示返回消息 ------- fixme 待確認(rèn) */ const ajax = ({ url, data = {}, query = {}, method = 'post', notice = false, type = '' }) => { // 默認(rèn)url 地址攜帶 參數(shù) const default_query = { pinuuid: store.getters.pinuuid, ebiid: store.getters.ebiid } query = object.assign(query, default_query) url = urlqueryformat(url, query) data.pinuuid = store.getters.pinuuid data = object.assign(data, default_query) // 過濾重復(fù)的請求 事件 // eslint-disable-next-line no-unused-vars const repeat = messagelist.findrepeat(url, data, method) // if (repeat.length > 0) { // eslint-disable-next-line no-constant-condition if (false) { message.warning('數(shù)據(jù)正在獲取中, 請稍后...') return promise.reject({ message: '數(shù)據(jù)正在獲取中, 請稍后...' }) } else { // 獲取 分配的 rid 即 index const rid = messagelist.add(url, data, method) return new promise((resolve, reject) => { // eslint-disable-next-line prefer-const let reqstate = { url, method } if (method.tolowercase() === 'get') reqstate['params'] = data else if (method.tolowercase() === 'post') { reqstate['data'] = data if (type === 'x_www_form_urlencoded') { request.defaults.headers.post['content-type'] = httpconstant.form_data_req let ret = '' for (const it in reqstate) { ret += encodeuricomponent(it) + '=' + encodeuricomponent(reqstate[it]) + '&' } reqstate['data'] = ret } else if (type === 'form_data') { request.defaults.headers.post['content-type'] = httpconstant.mul_form_req } else if (type === 'blob') { request.defaults.headers.post['content-type'] = httpconstant.application_blob_req reqstate.responsetype = type } else { request.defaults.headers.post['content-type'] = httpconstant.form_data_req } } request(reqstate).then(res => { // settimeout(() => { // 測試用 fortest messagelist.del(rid) resolve(res) // }, 1000 * 2) }).catch(err => { // 當(dāng)請求錯誤 是否需要重新發(fā)包 網(wǎng)絡(luò)錯誤等 處理 messagelist.del(rid) reject(err) }) }) } }
消息隊列
使用 消息隊列 制作 請求防抖,防止重復(fù)請求印象服務(wù)器
/** loading 隊列 */ const messagelist = { loading: null, timer: null, state: {}, add(url, params, method) { let rid = 0 while (this.state[rid]) { ++rid } this.state[rid] = { rid, data: json.stringify({ url, params, method }) } this.loading = loading.service(loadingoption) this.inittimer() return rid }, // url 作為key del(rid) { delete this.state[rid] if (object.values(this.state).length <= 0) { this.closeloading() } }, findrepeat(url, params, method) { // 獲取重復(fù)相同請求 return object.values(this.state).filter(item => { return item.data === json.stringify({ url, params, method }) }).map(item => { return { ...item, ...{ data: json.parse(item.data) }} }) }, inittimer() { if (this.timer) { cleartimeout(this.timer) } // 延遲 3s 強(qiáng)制close loading 狀態(tài) this.timer = settimeout(() => { message.error('請求超時, 自動關(guān)閉') if (this.loading) this.loading.close() }, 1000 * 5) }, closeloading() { if (this.loading) this.loading.close() cleartimeout(this.timer) } }
elementui loading參數(shù)設(shè)置
const loadingoption = { lock: true, text: 'loading', spinner: 'el-icon-loading', background: 'rgba(0, 0, 0, 0.7)' }
ps: 其他配置項
const httpconstant = { // 請求content-type類型 'form_data_req': 'application/x-www-form-urlencoded', 'application_json_req': 'application/json', 'mul_form_req': 'multipart/form-data', 'application_blob_req': 'application/vnd.ms-excel;charset=utf-8', }
基于elementui的loading全局加載
應(yīng)用場景
場景:前端在發(fā)送ajax請求,請求后臺數(shù)據(jù)時,不允許用戶點擊當(dāng)前頁面的其他按鈕。
loading 還可以以服務(wù)的方式調(diào)用。引入 loading 服務(wù)
1.引入庫
代碼如下(示例):
import { loading } from 'element-ui'
2.定義全局loading
代碼如下(示例):
/* 全局多彩加載層 */ vue.prototype.$basecolorfullloading = (wer) => { const loading = loading.service({ // 聲明一個loading對象 lock: true, // 是否鎖屏 text: '正在加載...', // 加載動畫的文字 spinner: 'inner-circles-loader', // 引入的loading圖標(biāo) background: 'hsla(0,0%,100%,0)', // 背景顏色 target: document.queryselector(wer) }) settimeout(function() { // 設(shè)定定時器,超時5s后自動關(guān)閉遮罩層,避免請求失敗時,遮罩層一直存在的問題 loading.close() // 關(guān)閉遮罩層 }, 2000000) return loading }
3.使用
html標(biāo)簽添加標(biāo)識class 或 id(在表格上加遮罩)
//添加class="todolist" <el-table :data="currenttabledata" class="todolist" size="small" style="width: 100%" highlight-current-row @row-click="handleselectionchange"> </el-table>
js調(diào)用
// 請求時調(diào)用 const loading = this.$basecolorfullloading('.app-main') //請求完成后關(guān)閉 loading.close()
到此這篇關(guān)于ajax 請求隊列解決方案并結(jié)合elementui做全局加載狀態(tài)的文章就介紹到這了,更多相關(guān)ajax 請求隊列內(nèi)容請搜索碩編程以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持碩編程!