Инкапсуляция сетевых запросов uni-app
Мне нечего делать эти несколько дней, поэтому я пошел в небольшую группу разработчиков программы, чтобы посмотреть.Кстати, я посмотрел код и нашел некоторые проблемы в сетевом запросе.В первый раз забудьте об этом (на самом деле, чтобы успокоить себя).
Сетевые запросы записываются на странице, и каждый запрос должен быть записан повторноuni.request
Помимо некоторых базовых конфигураций, каждая страница должна обрабатывать одно и то же исключение — просто бездумное копирование.
Создайте новый класс MinRequest, чтобы просто инкапсулировать uni.request.
class MinRequest {
// 默认配置
config = {
baseURL: '',
header: {
'content-type': 'application/json'
},
method: 'GET',
dataType: 'json',
responseType: 'text'
}
// 判断url是否完整
static isCompleteURL (url) {
return /(http|https):\/\/([\w.]+\/?)\S*/.test(url)
}
// 设置配置
setConfig (func) {
this.config = func(this.config)
}
// 请求
request (options = {}) {
options.baseURL = options.baseURL || this.config.baseURL
options.dataType = options.dataType || this.config.dataType
options.url = MinRequest.isCompleteURL(options.url) ? options.url : (options.baseURL + options.url)
options.data = options.data
options.header = {...options.header, ...this.config.header}
options.method = options.method || this.config.method
return new Promise((resolve, reject) => {
options.success = function (res) {
resolve(res)
}
options.fail= function (err) {
reject(err)
}
uni.request(options)
})
}
get (url, data, options = {}) {
options.url = url
options.data = data
options.method = 'GET'
return this.request(options)
}
post (url, data, options = {}) {
options.url = url
options.data = data
options.method = 'POST'
return this.request(options)
}
}
Вышеприведенное решает необходимость повторения записи для каждого запроса.uni.request
и некоторая базовая конфигурация,
Добавим перехватчик запросов
class MinRequest {
// 默认配置
config = {
baseURL: '',
header: {
'content-type': 'application/json'
},
method: 'GET',
dataType: 'json',
responseType: 'text'
}
// 拦截器
interceptors = {
request: (func) => {
if (func) {
MinRequest.requestBefore = func
} else {
MinRequest.requestBefore = (request) => request
}
},
response: (func) => {
if (func) {
MinRequest.requestAfter = func
} else {
MinRequest.requestAfter = (response) => response
}
}
}
static requestBefore (config) {
return config
}
static requestAfter (response) {
return response
}
// 判断url是否完整
static isCompleteURL (url) {
return /(http|https):\/\/([\w.]+\/?)\S*/.test(url)
}
// 设置配置
setConfig (func) {
this.config = func(this.config)
}
// 请求
request (options = {}) {
options.baseURL = options.baseURL || this.config.baseURL
options.dataType = options.dataType || this.config.dataType
options.url = MinRequest.isCompleteURL(options.url) ? options.url : (options.baseURL + options.url)
options.data = options.data
options.header = {...options.header, ...this.config.header}
options.method = options.method || this.config.method
options = {...options, ...MinRequest.requestBefore(options)}
return new Promise((resolve, reject) => {
options.success = function (res) {
resolve(MinRequest.requestAfter(res))
}
options.fail= function (err) {
reject(MinRequest.requestAfter(err))
}
uni.request(options)
})
}
get (url, data, options = {}) {
options.url = url
options.data = data
options.method = 'GET'
return this.request(options)
}
post (url, data, options = {}) {
options.url = url
options.data = data
options.method = 'POST'
return this.request(options)
}
}
Она в основном завершена, когда я пишу ее здесь. Нет приватных свойств и приватных методов. Некоторые свойства и методы не хотят раскрываться. Теперь нам нужно найти способ реализовать эту функцию. В ES6 естьSymbol
Вы можете использовать характеристики этого типа для реализации частных свойств, и сделать их между прочим.Vue
плагин
Полная реализация кода
const config = Symbol('config')
const isCompleteURL = Symbol('isCompleteURL')
const requestBefore = Symbol('requestBefore')
const requestAfter = Symbol('requestAfter')
class MinRequest {
[config] = {
baseURL: '',
header: {
'content-type': 'application/json'
},
method: 'GET',
dataType: 'json',
responseType: 'text'
}
interceptors = {
request: (func) => {
if (func) {
MinRequest[requestBefore] = func
} else {
MinRequest[requestBefore] = (request) => request
}
},
response: (func) => {
if (func) {
MinRequest[requestAfter] = func
} else {
MinRequest[requestAfter] = (response) => response
}
}
}
static [requestBefore] (config) {
return config
}
static [requestAfter] (response) {
return response
}
static [isCompleteURL] (url) {
return /(http|https):\/\/([\w.]+\/?)\S*/.test(url)
}
setConfig (func) {
this[config] = func(this[config])
}
request (options = {}) {
options.baseURL = options.baseURL || this[config].baseURL
options.dataType = options.dataType || this[config].dataType
options.url = MinRequest[isCompleteURL](options.url) ? options.url : (options.baseURL + options.url)
options.data = options.data
options.header = {...options.header, ...this[config].header}
options.method = options.method || this[config].method
options = {...options, ...MinRequest[requestBefore](options)}
return new Promise((resolve, reject) => {
options.success = function (res) {
resolve(MinRequest[requestAfter](res))
}
options.fail= function (err) {
reject(MinRequest[requestAfter](err))
}
uni.request(options)
})
}
get (url, data, options = {}) {
options.url = url
options.data = data
options.method = 'GET'
return this.request(options)
}
post (url, data, options = {}) {
options.url = url
options.data = data
options.method = 'POST'
return this.request(options)
}
}
MinRequest.install = function (Vue) {
Vue.mixin({
beforeCreate: function () {
if (this.$options.minRequest) {
console.log(this.$options.minRequest)
Vue._minRequest = this.$options.minRequest
}
}
})
Object.defineProperty(Vue.prototype, '$minApi', {
get: function () {
return Vue._minRequest.apis
}
})
}
export default MinRequest
Как позвонить?
Создайте файл api.js
import MinRequest from './MinRequest'
const minRequest = new MinRequest()
// 请求拦截器
minRequest.interceptors.request((request) => {
return request
})
// 响应拦截器
minRequest.interceptors.response((response) => {
return response.data
})
// 设置默认配置
minRequest.setConfig((config) => {
config.baseURL = 'https://www.baidu.com'
return config
})
export default {
// 这里统一管理api请求
apis: {
uniapp (data) {
return minRequest.get('/s', data)
}
}
}
добавить в main.js
import MinRequest from './MinRequest'
import minRequest from './api'
Vue.use(MinRequest)
const app = new Vue({
...App,
minRequest
})
позвонить на страницу
methods: {
// 使用方法一
testRequest1 () {
this.$minApi.uniapp({wd: 'uni-app'}).then(res => {
this.res = res
console.log(res)
}).catch(err => {
console.log(err)
})
},
// 使用方式二
async testRequest2 () {
try {
const res = await this.$minApi.uniapp({wd: 'uni-app'})
console.log(res)
} catch (err) {
console.log(err)
}
}
}
Вышеприведенное является простой инкапсуляцией реализации конкретной ссылки на вызов.github