美文网首页
使用Mock Server造数据

使用Mock Server造数据

作者: sweetBoy_9126 | 来源:发表于2020-03-05 16:32 被阅读0次
    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"
    

    相关文章

      网友评论

          本文标题:使用Mock Server造数据

          本文链接:https://www.haomeiwen.com/subject/rcgfrhtx.html