1 Star 0 Fork 220

swantbo / dva-boot-admin

forked from 毛睫(weiq) / dva-boot-admin 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
mock-server.js 383 Bytes
一键复制 编辑 原始数据 按行查看 历史
毛睫(weiq) 提交于 2020-03-24 00:23 . :cake:mock-server test
/**
* mock-server 利用 express 来生成真实的模拟数据
* 为了解决之前mock数据时,只针对fetch有效,且在开发人员工具Network面板中无法看到请求的问题
*/
exports.addMockServer = () => config => {
config.before = app => {
app.get('/test/get', (req, res) => {
res.json({ get: 'response get' });
});
};
return config;
};
JavaScript
1
https://gitee.com/swantbo/dva-boot-admin.git
git@gitee.com:swantbo/dva-boot-admin.git
swantbo
dva-boot-admin
dva-boot-admin
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891