Vue-使用json-server快速「僞造」後臺接口

  JSON-Server主要的做用是搭建一臺JSON服務器,測試一些業務邏輯(我以前都是採用讀取文件的方式尷尬)。
1、安裝javascript

npm install --save json-server

  前提是已經安裝好了node環境,而且初始化好了項目。
2、提供json數據文件。
  在項目根目錄下,新建一個 JSON 文件db.json。
3、配置json-server
  在build\webpack.dev.conf.js下配置,若是是用舊版本的手腳架工具初始化的項目,是在build/dev-server.js下配置。html

/*----------------jsonServer---------*/
/*引入json-server*/
const jsonServer = require('json-server')
/*搭建一個server*/
const apiServer = jsonServer.create()
/*將db.json關聯到server*/
const apiRouter = jsonServer.router('db.json')
const middlewares = jsonServer.defaults()
apiServer.use(middlewares)
apiServer.use(apiRouter)
/*監聽端口*/
apiServer.listen(3000, () => {
  console.log('JSON Server is running')
})

4、訪問數據
  配置完成後,要npm dev run 重啓項目,而後再地址欄輸入http://localhost:3000 就能夠訪問到數據。
5、設置代理
  最後作一下瀏覽器代理設置,在 config/index.js中:vue

/*代理配置表,在這裏能夠配置特定的請求代理到對應的API接口*/
/* 下面的例子將代理請求 /api/getNewsList  到 http://localhost:3000/getNewsList*/
proxyTable: {
  '/api': {
    changeOrigin: true,// 若是接口跨域,須要進行這個參數配置
    target: 'http://localhost:3000',// 接口的域名
    pathRewrite: {
      '^/api': ''//後面能夠使重寫的新路徑,通常不作更改
    }
  }

  具體設置代理的方法,參見:Vue-接口跨域請求調試proxyTable
6、最後驗證一下代理是否成功
  在瀏覽器輸入地址:http://localhost:8080/api。java

111

7、使用node

  使用vue-resouce發送Ajax獲取數據。webpack

    this.$http.get('/api/getNewsList')//代替http://localhost:3000/getNewsList
      .then((res) => {
        this.newsList = res.data
      }, (err) => {
        console.log(err)
      })
相關文章
相關標籤/搜索