|
@@ -5,6 +5,10 @@ axios.defaults.timeout = 600000 //响应时间
|
|
axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded;charset=UTF-8'; //配置请求头
|
|
axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded;charset=UTF-8'; //配置请求头
|
|
axios.defaults.baseURL = process.env.NODE_HOST; //配置接口地址
|
|
axios.defaults.baseURL = process.env.NODE_HOST; //配置接口地址
|
|
console.log(process.env)
|
|
console.log(process.env)
|
|
|
|
+
|
|
|
|
+const CancelToken = axios.CancelToken;
|
|
|
|
+let cancel; // 用于存储取消请求的方法
|
|
|
|
+
|
|
//POST传参序列化(添加请求拦截器)
|
|
//POST传参序列化(添加请求拦截器)
|
|
axios.interceptors.request.use((config) => {
|
|
axios.interceptors.request.use((config) => {
|
|
//在发送请求之前做某件事
|
|
//在发送请求之前做某件事
|
|
@@ -22,32 +26,33 @@ axios.interceptors.request.use((config) => {
|
|
// } else if (config.method === 'post') {
|
|
// } else if (config.method === 'post') {
|
|
// config.data = qs.stringify(config.data)//序列化post 参数
|
|
// config.data = qs.stringify(config.data)//序列化post 参数
|
|
// }
|
|
// }
|
|
- if(config.url === 'https://gpt.cocorobo.cn/search_image' || config.url === 'https://gpt.cocorobo.cn/chat' || config.url === 'https://gpt4.cocorobo.cn/create_free_assistants' || config.url === 'https://gpt4.cocorobo.cn/assistants_completion_response') {
|
|
|
|
|
|
+ if (config.url === 'https://gpt.cocorobo.cn/search_image' || config.url === 'https://gpt.cocorobo.cn/chat' || config.url === 'https://gpt4.cocorobo.cn/create_free_assistants' || config.url === 'https://gpt4.cocorobo.cn/assistants_completion_response') {
|
|
config.data = config.data//序列化post 参数
|
|
config.data = config.data//序列化post 参数
|
|
- }else if(config.url.indexOf('https://gpt4.cocorobo.cn/')!=-1 || config.url.indexOf('https://claude3.cocorobo.cn/')!=-1){
|
|
|
|
- config.headers = {
|
|
|
|
- 'Content-Type': 'application/json',
|
|
|
|
- }
|
|
|
|
- }else if (config.data && config.data[0].post == '1' && config.method === 'post') {
|
|
|
|
|
|
+ } else if (config.url.indexOf('https://gpt4.cocorobo.cn/') != -1 || config.url.indexOf('https://claude3.cocorobo.cn/') != -1) {
|
|
|
|
+ config.headers = {
|
|
|
|
+ 'Content-Type': 'application/json',
|
|
|
|
+ }
|
|
|
|
+ } else if (config.data && config.data[0].post == '1' && config.method === 'post') {
|
|
config.data = 'mode=' + (Object.values(config.data[0]).join(','))//序列化post 参数
|
|
config.data = 'mode=' + (Object.values(config.data[0]).join(','))//序列化post 参数
|
|
} else if (config.method === 'post') {
|
|
} else if (config.method === 'post') {
|
|
|
|
|
|
const encoded = {};
|
|
const encoded = {};
|
|
for (const key in config.data[0]) {
|
|
for (const key in config.data[0]) {
|
|
if (Object.hasOwnProperty.call(config.data[0], key)) {
|
|
if (Object.hasOwnProperty.call(config.data[0], key)) {
|
|
- encoded[key] = encodeURIComponent(config.data[0][key]);
|
|
|
|
|
|
+ encoded[key] = encodeURIComponent(config.data[0][key]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
config.data = qs.stringify([encoded]) //序列化post 参数
|
|
config.data = qs.stringify([encoded]) //序列化post 参数
|
|
- }else {
|
|
|
|
|
|
+ } else {
|
|
const encoded = {};
|
|
const encoded = {};
|
|
for (const key in config.data) {
|
|
for (const key in config.data) {
|
|
if (Object.hasOwnProperty.call(config.data, key)) {
|
|
if (Object.hasOwnProperty.call(config.data, key)) {
|
|
- encoded[key] = encodeURIComponent(config.data[key]);
|
|
|
|
|
|
+ encoded[key] = encodeURIComponent(config.data[key]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
config.data = encoded
|
|
config.data = encoded
|
|
}
|
|
}
|
|
|
|
+
|
|
return config;
|
|
return config;
|
|
}, (error) => {
|
|
}, (error) => {
|
|
console.log('错误的传参')
|
|
console.log('错误的传参')
|
|
@@ -64,15 +69,17 @@ axios.interceptors.response.use((res) => {
|
|
}
|
|
}
|
|
return res;
|
|
return res;
|
|
}, (error) => {
|
|
}, (error) => {
|
|
- if (error.response.data.status == '401') { //如果token 过期 则跳转到登录页面
|
|
|
|
|
|
+ if (axios.isCancel(error)) {
|
|
|
|
+ console.log('请求已取消', error.message);
|
|
|
|
+ } else if (error.response.data.status == '401') { //如果token 过期 则跳转到登录页面
|
|
this.$router.push('/login');
|
|
this.$router.push('/login');
|
|
}
|
|
}
|
|
return Promise.reject(error);
|
|
return Promise.reject(error);
|
|
});
|
|
});
|
|
//返回一个Promise(发送post请求)
|
|
//返回一个Promise(发送post请求)
|
|
-function post(url, params) {
|
|
|
|
|
|
+function post(url, params, source) {
|
|
return new Promise((resolve, reject) => {
|
|
return new Promise((resolve, reject) => {
|
|
- axios.post(url, params)
|
|
|
|
|
|
+ axios.post(url, params, source ? { cancelToken: source.token } : '')
|
|
.then(response => {
|
|
.then(response => {
|
|
resolve(response);
|
|
resolve(response);
|
|
}, err => {
|
|
}, err => {
|
|
@@ -85,25 +92,26 @@ function post(url, params) {
|
|
}
|
|
}
|
|
|
|
|
|
//返回一个Promise(发送put请求)
|
|
//返回一个Promise(发送put请求)
|
|
-function put(url, params) {
|
|
|
|
- return new Promise((resolve, reject) => {
|
|
|
|
- axios.put(url, params)
|
|
|
|
- .then(response => {
|
|
|
|
- resolve(response);
|
|
|
|
- }, err => {
|
|
|
|
- reject(err);
|
|
|
|
- })
|
|
|
|
- .catch((error) => {
|
|
|
|
- reject(error)
|
|
|
|
- })
|
|
|
|
- })
|
|
|
|
|
|
+function put(url, params, source) {
|
|
|
|
+ return new Promise((resolve, reject) => {
|
|
|
|
+ axios.put(url, params, source ? { cancelToken: source.token } : '')
|
|
|
|
+ .then(response => {
|
|
|
|
+ resolve(response);
|
|
|
|
+ }, err => {
|
|
|
|
+ reject(err);
|
|
|
|
+ })
|
|
|
|
+ .catch((error) => {
|
|
|
|
+ reject(error)
|
|
|
|
+ })
|
|
|
|
+ })
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
////返回一个Promise(发送get请求)
|
|
////返回一个Promise(发送get请求)
|
|
-function get(url, param) {
|
|
|
|
|
|
+function get(url, param, source) {
|
|
return new Promise((resolve, reject) => {
|
|
return new Promise((resolve, reject) => {
|
|
- axios.get(url, { params: param })
|
|
|
|
|
|
+ let cancelToken = source ? source.token : ''
|
|
|
|
+ axios.get(url, { params: param, cancelToken })
|
|
.then(response => {
|
|
.then(response => {
|
|
resolve(response)
|
|
resolve(response)
|
|
}, err => {
|
|
}, err => {
|
|
@@ -117,5 +125,10 @@ function get(url, param) {
|
|
export default {
|
|
export default {
|
|
get,
|
|
get,
|
|
post,
|
|
post,
|
|
- put,
|
|
|
|
|
|
+ put,
|
|
|
|
+ setCancelSource: () => {
|
|
|
|
+ // 每次创建新的请求时,可以调用此方法以创建新的取消令牌
|
|
|
|
+ cancel = CancelToken.source();
|
|
|
|
+ return cancel;
|
|
|
|
+ }
|
|
}
|
|
}
|