123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- import * as qs from 'qs'
- import type { WdRequestOptions, WdRequestConstructorConfig, WdUploadFileOptions } from './type'
- class WdRequest {
- config: WdRequestConstructorConfig
- url?: string
- constructor(config: WdRequestConstructorConfig) {
- this.config = config
- }
- private _fetchUrl(url: string) {
- if (url.includes('http')) {
- this.url = url
- } else {
- this.url = this.config.baseUrl + url
- }
- return this.url
- }
- request<T = any>(config: WdRequestOptions) {
- return new Promise<T>((resolve, reject) => {
- config.url = this._fetchUrl(config.url)
- // 解析query方法
- if (config.query) {
- const queryStr = qs.stringify(config.query)
- if (config.url.includes('?')) {
- config.url += `&${queryStr}`
- } else {
- config.url += `?${queryStr}`
- }
- }
- // 实现全局请求拦截
- if (this.config?.interceptor?.requestSuccessFn) {
- config = this.config.interceptor.requestSuccessFn(config)
- }
- // 实现局部请求拦截
- if (config.interceptor?.requestSuccessFn) {
- config = config.interceptor.requestSuccessFn(config)
- }
- uni.request({
- timeout: this.config.timeout, // 延迟时间
- dataType: 'json',
- responseType: 'json',
- url: config.url as string,
- ...config,
- success: (res: any) => {
- // 有可能在执行的过程出现异常后抛出异常
- try {
- // 实现全局响应拦截
- if (this.config?.interceptor?.responseSuccessFn) {
- res = this.config.interceptor.responseSuccessFn(res)
- }
- // 实现局部响应拦截
- if (config?.interceptor?.responseSuccessFn) {
- res = config.interceptor.responseSuccessFn(res)
- }
- resolve(res)
- } catch (error) {
- reject(error)
- }
- },
- fail: (error) => {
- if (this.config?.interceptor?.responseErrorFn) {
- error = this.config.interceptor.responseErrorFn(error)
- }
- if (config?.interceptor?.responseErrorFn) {
- error = config?.interceptor?.responseErrorFn(error)
- }
- reject(error)
- },
- })
- })
- }
- get<T = any>(url: string, data?: WdRequestOptions['data'], config?: WdRequestOptions) {
- return this.request<T>({
- url,
- method: 'GET',
- data,
- ...config,
- })
- }
- post<T = any>(url: string, data?: WdRequestOptions['data'], config?: WdRequestOptions) {
- return this.request<T>({
- url,
- method: 'POST',
- data,
- ...config,
- })
- }
- put<T = any>(url: string, data?: WdRequestOptions['data'], config?: WdRequestOptions) {
- return this.request<T>({
- url,
- method: 'POST',
- data,
- ...config,
- })
- }
- delete<T = any>(url: string, data?: WdRequestOptions['data'], config?: WdRequestOptions) {
- return this.request<T>({
- url,
- method: 'DELETE',
- data,
- ...config,
- })
- }
- // 文件上传
- uploadFile<T = any>(config: WdUploadFileOptions) {
- return new Promise<T>((resolve, reject) => {
- // 实现全局请求拦截
- if (this.config?.interceptor?.requestSuccessFn) {
- config = this.config.interceptor.requestSuccessFn(config)
- }
- // 实现局部请求拦截
- if (config.interceptor?.requestSuccessFn) {
- config = config.interceptor.requestSuccessFn(config)
- }
- uni.uploadFile({
- ...config,
- success: (res: any) => {
- // 实现全局响应拦截
- if (this.config?.interceptor?.responseSuccessFn) {
- res = this.config.interceptor.responseSuccessFn(res)
- }
- // 实现局部响应拦截
- if (config?.interceptor?.responseSuccessFn) {
- res = config.interceptor.responseSuccessFn(res)
- }
- resolve(res)
- },
- fail: (error) => {
- reject(error)
- },
- })
- })
- }
- }
- export default WdRequest
|