유 니 버 설 데이터 네트워크 요청 패키지 및 유 니 버 설 사용
import http from './interface'
/**
*
* url ,
*
*/
// ( ) import {test} from '@/common/vmeitime-http/'
export const test = (data) => {
/* http.config.baseUrl = "http://localhost:8080/api/"
//
http.interceptor.request = (config) => {
config.header = {
"token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
} */
//
http.interceptor.response = (response) => {
console.log(' response....')
//
return response;
}
return http.request({
baseUrl: 'https://unidemo.dcloud.net.cn/',
url: 'ajax/echo/text?name=uni-app',
dataType: 'text',
data,
})
}
//
export const banner = (data) => {
return http.request({
url: '/banner/36kr',
method: 'GET',
data,
// handle:true
})
}
// import api from '@/common/vmeitime-http/'
export default {
test,
banner
}
interface.js
export default {
config: {
baseUrl: "https:",
header: {
'Content-Type':'application/json;charset=UTF-8',
'Content-Type':'application/x-www-form-urlencoded'
},
data: {},
method: "GET",
dataType: "json", /* json, JSON.parse */
responseType: "text",
success() {},
fail() {},
complete() {}
},
interceptor: {
request: null,
response: null
},
request(options) {
if (!options) {
options = {}
}
options.baseUrl = options.baseUrl || this.config.baseUrl
options.dataType = options.dataType || this.config.dataType
options.url = options.baseUrl + options.url
options.data = options.data || {}
options.method = options.method || this.config.method
//TODO
//TODO
/*
_token = {'token': getStorage(STOREKEY_LOGIN).token || 'undefined'},
_sign = {'sign': sign(JSON.stringify(options.data))}
options.header = Object.assign({}, options.header, _token,_sign)
*/
return new Promise((resolve, reject) => {
let _config = null
options.complete = (response) => {
let statusCode = response.statusCode
response.config = _config
if (process.env.NODE_ENV === 'development') {
if (statusCode === 200) {
console.log("【" + _config.requestId + "】 :" + JSON.stringify(response.data))
}
}
if (this.interceptor.response) {
let newResponse = this.interceptor.response(response)
if (newResponse) {
response = newResponse
}
}
//
_reslog(response)
if (statusCode === 200) { //
resolve(response);
} else {
reject(response)
}
}
_config = Object.assign({}, this.config, options)
_config.requestId = new Date().getTime()
if (this.interceptor.request) {
this.interceptor.request(_config)
}
//
_reqlog(_config)
if (process.env.NODE_ENV === 'development') {
console.log("【" + _config.requestId + "】 :" + _config.url)
if (_config.data) {
console.log("【" + _config.requestId + "】 :" + JSON.stringify(_config.data))
}
}
uni.request(_config);
});
},
get(url, data, options) {
if (!options) {
options = {}
}
options.url = url
options.data = data
options.method = 'GET'
return this.request(options)
},
post(url, data, options) {
if (!options) {
options = {}
}
options.url = url
options.data = data
options.method = 'POST'
return this.request(options)
},
put(url, data, options) {
if (!options) {
options = {}
}
options.url = url
options.data = data
options.method = 'PUT'
return this.request(options)
},
delete(url, data, options) {
if (!options) {
options = {}
}
options.url = url
options.data = data
options.method = 'DELETE'
return this.request(options)
}
}
/**
*
*/
function _reqlog(req) {
if (process.env.NODE_ENV === 'development') {
console.log("【" + req.requestId + "】 :" + req.url)
if (req.data) {
console.log("【" + req.requestId + "】 :" + JSON.stringify(req.data))
}
}
//TODO
}
/**
*
*/
function _reslog(res) {
let _statusCode = res.statusCode;
if (process.env.NODE_ENV === 'development') {
console.log("【" + res.config.requestId + "】 :" + res.config.url)
if (res.config.data) {
console.log("【" + res.config.requestId + "】 :" + JSON.stringify(res.config.data))
}
console.log("【" + res.config.requestId + "】 :" + JSON.stringify(res))
}
//TODO ,
switch(_statusCode){
case 200:
break;
case 401:
break;
case 404:
break;
default:
break;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Dubbo (2): zookeeper 등록 센터Zookeeper 는 Apacahe Hadoop 의 하위 프로젝트 로 트 리 형태의 디 렉 터 리 서비스 로 푸 시 변경 을 지원 하 며 Dubbo 서비스의 등록 센터 로 적합 하 며 산업 강도 가 높 아 생산 환경...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.