使用Mock Server造数据

2020-03-05  本文已影响0人  sweetBoy_9126
  1. 创建mock目录
mkdir train-mock
cd train-mock
npm init -y //初始化package.json
touch index.js // 创建服务器入口文件
yarn add express 
  1. 编辑index.js
const express = require('express')
const app = express()

app.get('/', (request, response)  => {
    response.status(200)
    response.send('hello world')
    response.end()
})
app.get('/rest', (request, response) => {
  // 发送json格式
    response.json({
        result: 1,
        msg: 'heool'
    })
})

app.listen(5000) //5000端口号
  1. 运行 node index.js 启动服务
  2. 在前端项目中使用
    只需要在package.json里添加下面的代码
"proxy": "http://localhost:5000"
上一篇下一篇

猜你喜欢

热点阅读