This commit is contained in:
花裤衩 2020-02-02 19:37:33 +08:00
parent 858b835f36
commit 248104104b
1 changed files with 2 additions and 13 deletions

View File

@ -2,22 +2,10 @@ const chokidar = require('chokidar')
const bodyParser = require('body-parser')
const chalk = require('chalk')
const path = require('path')
const Mock = require('mockjs')
const mockDir = path.join(process.cwd(), 'mock')
const Mock = require('mockjs')
/**
* 修订说明把mock文件夹下面的文件功能进行梳理
*
* 1. /mock/index.js输出mockXHR()函数使用改写
* XMLHttpRequest对象的方式在浏览器中拦截请求返回响应
*
* 2. /mock/mock-server.js引用/mock/index.js中导出的
* mocks数据未经responseFake转换自行加工后作为
* devServer启动的express应用的路由从而实现真正的后台
* api服务
*/
function registerRoutes(app) {
let mockLastIndex
const { default: mocks } = require('./index.js')
@ -54,6 +42,7 @@ const responseFake = (url, type, respond) => {
}
}
}
module.exports = app => {
// es6 polyfill
require('@babel/register')