55 lines
1.4 KiB
JavaScript
55 lines
1.4 KiB
JavaScript
/**
|
||
* @description 导入所有 controller 模块,浏览器环境中自动输出controller文件夹下Mock接口,请勿修改。
|
||
*/
|
||
import Mock from 'mockjs'
|
||
import { paramObj } from '@/utils/index'
|
||
import request from '@/utils/request'
|
||
|
||
const files = require.context('../../mock/controller', true, /\.js$/)
|
||
const mocks = files.keys().flatMap(files)
|
||
|
||
export function mockXHR() {
|
||
Mock.XHR.prototype.proxy_send = Mock.XHR.prototype.send
|
||
Mock.XHR.prototype.send = function () {
|
||
if (this.custom.xhr) {
|
||
this.custom.xhr.withCredentials = this.withCredentials || false
|
||
if (this.responseType) {
|
||
this.custom.xhr.responseType = this.responseType
|
||
}
|
||
}
|
||
if (this.custom.requestHeaders)
|
||
this.custom.options.headers = this.custom.requestHeaders
|
||
this.proxy_send(...arguments)
|
||
}
|
||
|
||
function XHRHttpRequest(respond) {
|
||
return function (options) {
|
||
let result
|
||
if (respond instanceof Function) {
|
||
const { body, type, url, headers } = options
|
||
result = respond({
|
||
method: type,
|
||
body: JSON.parse(body),
|
||
query: paramObj(url),
|
||
headers: headers,
|
||
})
|
||
} else {
|
||
result = respond
|
||
}
|
||
return Mock.mock(result)
|
||
}
|
||
}
|
||
|
||
mocks.forEach((item) => {
|
||
Mock.mock(
|
||
new RegExp(item.url),
|
||
item.type || 'get',
|
||
XHRHttpRequest(item.response)
|
||
)
|
||
})
|
||
}
|
||
|
||
export function getAreaJSON() {
|
||
return require('/public/static/json/area-data.json')
|
||
}
|