| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /**
- * 导入所有 controller 模块,浏览器环境中自动输出controller文件夹下Mock接口,请勿修改。
- */
- import Mock from 'mockjs'
- import { paramObj } from '@/utils'
- const mocks = []
- const files = require.context('../../mock/controller', false, /\.js$/)
- files.keys().forEach((key) => {
- mocks.push(...files(key))
- })
- 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
- }
- }
- this.proxy_send(...arguments)
- }
- function XHRHttpRequst(respond) {
- return function (options) {
- let result
- if (respond instanceof Function) {
- const { body, type, url } = options
- result = respond({
- method: type,
- body: JSON.parse(body),
- query: paramObj(url),
- })
- } else {
- result = respond
- }
- return Mock.mock(result)
- }
- }
- mocks.forEach((item) => {
- Mock.mock(
- new RegExp(item.url),
- item.type || 'get',
- XHRHttpRequst(item.response)
- )
- })
- }
|