We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
上一篇我们遇到'少年,是不是忘了npm run mock?'的警告,这一篇我们就来解决这个问题。
安装koa和一系列的包(我们用的是koa v2):
koa koa-bodyparser koa-router boom nodemon mockjs
解释说明一下(知道的同学可以忽略):
结构:
mock ├── home // 和views文件夹对应 │ └── hello.js // home页面需要的hello模拟数据 ├── public // 公共的接口模拟数据 └── server.js // node代码
先上一盘server.js代码:
const Koa = require('koa') // 使用router const Router = require('koa-router') const Boom = require('boom') const bodyParser = require('koa-bodyparser') const app = new Koa() const router = new Router() // https://github.com/alexmingoia/koa-router app.use(router.routes()) app.use(router.allowedMethods({ throw: true, notImplemented: () => new Boom.notImplemented(), methodNotAllowed: () => new Boom.methodNotAllowed() })) // 使用bodyparser 解析get,post的参数 app.use(bodyParser()) // 模拟数据返回 /* 首页 */ // 获取hello数据 const helloData = require('./home/hello.js') router.get('/api/home/hello', async(ctx, next) => { ctx.body = helloData await next() }) // log error app.on('error', (err, ctx) => { console.log('server error', err, ctx) }) // 注意:这里的端口要和webpack里devServer的端口对应 app.listen(7777)
再来一盘hello.js代码:
// 引入mockjs来模拟数据 // https://github.com/nuysoft/Mock/wiki/Getting-Started const Mock = require('mockjs') const data = Mock.mock({ 'list|1-10': [{ 'id|+1': 1 }] }) const img = Mock.Random.image('200x100') module.exports = { msg: 'mock hello api works', data: data, imgUrl: img }
在package.json里scripts里加上: "mock": "nodemon ./mock/server.js"
"mock": "nodemon ./mock/server.js"
这样的话,我们只需要npm run mock就启动了本地的模拟数据接口功能了。
npm run mock
回到之前我们下的完整项目,先启动mock,然后npm run dev,我们就可以发现报错不见啦。
npm run dev
通过koa v2实现前后端分离,并且使用mockjs来更方便的模拟数据。
下一篇,我们创建发布环境下的webpack配置文件,并且看看怎么优化产出的代码的 - 从零开始做Vue前端架构(5)
Vue前端架构-by 子咻
The text was updated successfully, but these errors were encountered:
No branches or pull requests
前言
上一篇我们遇到'少年,是不是忘了npm run mock?'的警告,这一篇我们就来解决这个问题。
开发
一、安装包
安装koa和一系列的包(我们用的是koa v2):
解释说明一下(知道的同学可以忽略):
二、创建目录和文件
结构:
先上一盘server.js代码:
再来一盘hello.js代码:
在package.json里scripts里加上:
"mock": "nodemon ./mock/server.js"
这样的话,我们只需要
npm run mock
就启动了本地的模拟数据接口功能了。回到之前我们下的完整项目,先启动mock,然后
npm run dev
,我们就可以发现报错不见啦。总结
通过koa v2实现前后端分离,并且使用mockjs来更方便的模拟数据。
下一篇,我们创建发布环境下的webpack配置文件,并且看看怎么优化产出的代码的 - 从零开始做Vue前端架构(5)
项目完整代码
Vue前端架构-by 子咻
The text was updated successfully, but these errors were encountered: