172 lines
3.8 KiB
JavaScript
172 lines
3.8 KiB
JavaScript
import { mergeConfig, dispatchRequest, jsonpRequest} from "./utils.js";
|
|
export default class request {
|
|
constructor(options) {
|
|
//请求公共地址
|
|
this.baseUrl = options.baseUrl || "";
|
|
//公共文件上传请求地址
|
|
this.fileUrl = options.fileUrl || "";
|
|
// 超时时间
|
|
this.timeout = options.timeout || 6000;
|
|
// 服务器上传图片默认url
|
|
this.defaultUploadUrl = options.defaultUploadUrl || "";
|
|
//默认请求头
|
|
this.header = options.header || {};
|
|
//默认配置
|
|
this.config = options.config || {
|
|
isPrompt: true,
|
|
load: true,
|
|
isFactory: true,
|
|
resend: 0
|
|
};
|
|
}
|
|
|
|
navigateTo(url,data) {
|
|
const isLoggedIn = uni.getStorageSync('token'); // 假设 token 保存在本地存储
|
|
console.log("isLoggedIn",isLoggedIn)
|
|
if (isLoggedIn) {
|
|
if(data){
|
|
uni.navigateTo({
|
|
url: url,
|
|
animationType: "pop-in",
|
|
success: function(res) {
|
|
res.eventChannel.emit('acceptDataFromOpenerPage',data)
|
|
}
|
|
})
|
|
}else{
|
|
uni.navigateTo({
|
|
"url": url,
|
|
"animationType": "pop-in"
|
|
});
|
|
}
|
|
|
|
|
|
} else {
|
|
uni.showModal({
|
|
title: '提示',
|
|
content: '您还未登录,是否前往登录?',
|
|
confirmText: '前往',
|
|
success: function (res) {
|
|
if (res.confirm) {
|
|
uni.navigateTo({
|
|
"url":"/pages/login-pop/login-pop?type=2",
|
|
"animationType": "pop-in"
|
|
})
|
|
}
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
|
|
//post请求
|
|
post(url = '', data = {}, options = {}) {
|
|
return this.request({
|
|
method: "POST",
|
|
data: data,
|
|
url: url,
|
|
...options
|
|
});
|
|
}
|
|
|
|
//get请求
|
|
get(url = '', data = {}, options = {}) {
|
|
return this.request({
|
|
method: "GET",
|
|
data: data,
|
|
url: url,
|
|
...options
|
|
});
|
|
}
|
|
|
|
//put请求
|
|
put(url = '', data = {}, options = {}) {
|
|
return this.request({
|
|
method: "PUT",
|
|
data: data,
|
|
url: url,
|
|
...options
|
|
});
|
|
}
|
|
|
|
//delete请求
|
|
delete(url = '', data = {}, options = {}) {
|
|
return this.request({
|
|
method: "DELETE",
|
|
data: data,
|
|
url: url,
|
|
...options
|
|
});
|
|
}
|
|
//jsonp请求(只限于H5使用)
|
|
jsonp(url = '', data = {}, options = {}) {
|
|
return this.request({
|
|
method: "JSONP",
|
|
data: data,
|
|
url: url,
|
|
...options
|
|
});
|
|
}
|
|
//接口请求方法
|
|
async request(data) {
|
|
// 请求数据
|
|
let requestInfo,
|
|
// 是否运行过请求开始钩子
|
|
runRequestStart = false;
|
|
try {
|
|
if (!data.url) {
|
|
throw { errMsg: "【request】缺失数据url", statusCode: 0}
|
|
}
|
|
// 数据合并
|
|
requestInfo = mergeConfig(this, data);
|
|
// 代表之前运行到这里
|
|
runRequestStart = true;
|
|
//请求前回调
|
|
if (this.requestStart) {
|
|
let requestStart = this.requestStart(requestInfo);
|
|
if (typeof requestStart == "object") {
|
|
let changekeys = ["data", "header", "isPrompt", "load", "isFactory"];
|
|
changekeys.forEach(key => {
|
|
requestInfo[key] = requestStart[key];
|
|
});
|
|
} else {
|
|
throw {
|
|
errMsg: "【request】请求开始拦截器未通过",
|
|
statusCode: 0,
|
|
data: requestInfo.data,
|
|
method: requestInfo.method,
|
|
header: requestInfo.header,
|
|
url: requestInfo.url,
|
|
}
|
|
}
|
|
}
|
|
let requestResult = {};
|
|
if(requestInfo.method == "JSONP"){
|
|
requestResult = await jsonpRequest(requestInfo);
|
|
} else {
|
|
requestResult = await dispatchRequest(requestInfo);
|
|
}
|
|
//是否用外部的数据处理方法
|
|
if (requestInfo.isFactory && this.dataFactory) {
|
|
//数据处理
|
|
let result = await this.dataFactory({
|
|
...requestInfo,
|
|
response: requestResult
|
|
});
|
|
return Promise.resolve(result);
|
|
} else {
|
|
return Promise.resolve(requestResult);
|
|
}
|
|
} catch (err){
|
|
|
|
|
|
this.requestError && this.requestError(err);
|
|
return Promise.reject(err);
|
|
} finally {
|
|
// 如果请求开始未运行到,请求结束也不运行
|
|
if(runRequestStart){
|
|
this.requestEnd && this.requestEnd(requestInfo);
|
|
}
|
|
}
|
|
}
|
|
}
|