Vue2.0史上最全入坑教程(續(xù))—dev-server失蹤問題解答

一、前言

vue-cli(版本更新)妙啃,由原來的2.8.1升級為2.9.1档泽。主要改變是原來在build文件夾下的dev-server.js刪掉了,增加了webpack.dev.conf.js揖赴。導致原來通過express方式引入的數(shù)據(jù)找不到馆匿。本文將針對此問題,提供兩種結局方案燥滑。

二渐北、方案A— 使用node中的express

我們知道在2.9.1的版本中沒有express

  • 注意: 這里安裝vue-resource后需要在main.js注冊并使用下
import VueResource from 'vue-resource'
Vue.use(VueResource)
  • webpack.dev.conf配置express并設置路由規(guī)則
'use strict'
const utils = require('./utils')
const webpack = require('webpack')
const config = require('../config')
const merge = require('webpack-merge')
const baseWebpackConfig = require('./webpack.base.conf')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const FriendlyErrorsPlugin = require('friendly-errors-webpack-plugin')
const portfinder = require('portfinder')
/* datura_lj 增加express 20171126 */
const express = require('express')
const app = express()
var appData = require('../goods.json')//加載本地數(shù)據(jù)文件
var goods = appData.goods
var apiRoutes = express.Router()
app.use('/api', apiRoutes)
/* 增加express end */
const devWebpackConfig = merge(baseWebpackConfig, {
  module: {
    rules: utils.styleLoaders({ sourceMap: config.dev.cssSourceMap, usePostCSS: true })
  },
  // cheap-module-eval-source-map is faster for development
  devtool: config.dev.devtool,

  // these devServer options should be customized in /config/index.js
  devServer: {
    clientLogLevel: 'warning',
    historyApiFallback: true,
    hot: true,
    compress: true,
    host: process.env.HOST || config.dev.host,
    port: process.env.PORT || config.dev.port,
    open: config.dev.autoOpenBrowser,
    overlay: config.dev.errorOverlay ? {
      warnings: false,
      errors: true,
    } : false,
    publicPath: config.dev.assetsPublicPath,
    proxy: config.dev.proxyTable,
    quiet: true, // necessary for FriendlyErrorsPlugin
    watchOptions: {
      poll: config.dev.poll,
    },
    /* datura_lj 增加express 20171126 */
    before(app) {
      app.get('/api/goods', (req, res) => {
        res.json({
          code: 0,
          data: goods
        })
      })
    } 
    /* datura_lj 增加路由規(guī)則 end */
  },
  plugins: [
    new webpack.DefinePlugin({
      'process.env': require('../config/dev.env')
    }),
    new webpack.HotModuleReplacementPlugin(),
    new webpack.NamedModulesPlugin(), // HMR shows correct file names in console on update.
    new webpack.NoEmitOnErrorsPlugin(),
    // https://github.com/ampedandwired/html-webpack-plugin
    new HtmlWebpackPlugin({
      filename: 'index.html',
      template: 'index.html',
      inject: true
    }),
  ]
})

module.exports = new Promise((resolve, reject) => {
  portfinder.basePort = process.env.PORT || config.dev.port
  portfinder.getPort((err, port) => {
    if (err) {
      reject(err)
    } else {
      // publish the new Port, necessary for e2e tests
      process.env.PORT = port
      // add port to devServer config
      devWebpackConfig.devServer.port = port

      // Add FriendlyErrorsPlugin
      devWebpackConfig.plugins.push(new FriendlyErrorsPlugin({
        compilationSuccessInfo: {
          messages: [`Your application is running here: http://${config.dev.host}:${port}`],
        },
        onErrors: config.dev.notifyOnErrors
        ? utils.createNotifierCallback()
        : undefined
      }))

      resolve(devWebpackConfig)
    }
  })
})
  • 檢測 npm run dev后铭拧,在瀏覽器地址欄中輸入http://127.0.0.1:8080/api/goods即可看到數(shù)據(jù)
  • 注意 新建goods.json引入時候的路徑

二赃蛛、方案B— 使用json-server,啟動一個server

  • 新建server文件夾并配置相關信息
|--server
  |--package.json
  |--static
    |--config.js
    |--db.json
    |--server.js
1. package.json
{
  "name": "json-server-demo",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "server": "cd static && nodemon server.js"
  },
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "json-server": "^0.9.6",
    "nodemon": "^1.11.0"
  }
}

2. config.js
module.exports = {
  SERVER:"127.0.0.1",  
  PORT: 9527,
  DB_FILE:"db.json"
};
3. db.json

數(shù)據(jù)文件

4. server.js
const path = require('path');
const config = require('./config');
const jsonServer = require('json-server');
const ip = config.SERVER;
const port = config.PORT;
const db_file = config.DB_FILE;
const server = jsonServer.create();
const router = jsonServer.router(path.join(__dirname, config.DB_FILE));
const middlewares = jsonServer.defaults();
server.use(jsonServer.bodyParser);
server.use(middlewares);
server.use((req, res, next) => {
  res.header('X-Hello', 'datura_lj');
  next();
})
router.render = (req, res) => {
  res.jsonp({
    code: 0,
    body: res.locals.data
  })
}
server.use("/api", router);
server.use(router);
server.listen({
  host: ip,
  port: port
}, function () {
  console.log(JSON.stringify(jsonServer));
  console.log(`JSON Server is running in http://${ip}:${port}`);
});

  • 檢測server文件下執(zhí)行npm run server后搀菩,在瀏覽器地址欄中輸入http://127.0.0.1:9527/goods即可看到數(shù)據(jù)

三呕臂、在vue組件中,調取數(shù)據(jù)

 created () {
    /*
    * 方式一
    * 使用node中的express
    */
    /*this.$http.get('/api/goods').then((data) => {
      if(data.body.code == 0){
        this.imgArr = data.body.data;
        console.log(this.imgArr)
      }
    })*/
    /*
    * 方式二
    * 使用json-server方式
    */
    this.$http.get('http://127.0.0.1:9527/goods').then((data) => {
      console.log(data.body)
      if(data.body.code == 0){
        this.imgArr = data.body.body;
        console.log(this.imgArr)
      }
    })
  }

四肪跋、效果展示

五歧蒋、其他

本文只是針對數(shù)據(jù)問題解決,具體組件渲染以及路由規(guī)則州既,還請繼續(xù)看以前文章谜洽。
對以入門的朋友請看提高版本

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市吴叶,隨后出現(xiàn)的幾起案子阐虚,更是在濱河造成了極大的恐慌,老刑警劉巖蚌卤,帶你破解...
    沈念sama閱讀 211,290評論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件实束,死亡現(xiàn)場離奇詭異贸宏,居然都是意外死亡,警方通過查閱死者的電腦和手機磕洪,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,107評論 2 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來诫龙,“玉大人析显,你說我怎么就攤上這事∏┰撸” “怎么了谷异?”我有些...
    開封第一講書人閱讀 156,872評論 0 347
  • 文/不壞的土叔 我叫張陵,是天一觀的道長锦聊。 經常有香客問我歹嘹,道長,這世上最難降的妖魔是什么孔庭? 我笑而不...
    開封第一講書人閱讀 56,415評論 1 283
  • 正文 為了忘掉前任尺上,我火速辦了婚禮,結果婚禮上圆到,老公的妹妹穿的比我還像新娘怎抛。我一直安慰自己,他們只是感情好芽淡,可當我...
    茶點故事閱讀 65,453評論 6 385
  • 文/花漫 我一把揭開白布马绝。 她就那樣靜靜地躺著,像睡著了一般挣菲。 火紅的嫁衣襯著肌膚如雪富稻。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,784評論 1 290
  • 那天白胀,我揣著相機與錄音椭赋,去河邊找鬼。 笑死或杠,一個胖子當著我的面吹牛纹份,可吹牛的內容都是我干的。 我是一名探鬼主播廷痘,決...
    沈念sama閱讀 38,927評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼蔓涧,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了笋额?” 一聲冷哼從身側響起元暴,我...
    開封第一講書人閱讀 37,691評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎兄猩,沒想到半個月后茉盏,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體鉴未,經...
    沈念sama閱讀 44,137評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,472評論 2 326
  • 正文 我和宋清朗相戀三年鸠姨,在試婚紗的時候發(fā)現(xiàn)自己被綠了铜秆。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,622評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡讶迁,死狀恐怖连茧,靈堂內的尸體忽然破棺而出,到底是詐尸還是另有隱情巍糯,我是刑警寧澤啸驯,帶...
    沈念sama閱讀 34,289評論 4 329
  • 正文 年R本政府宣布,位于F島的核電站祟峦,受9級特大地震影響罚斗,放射性物質發(fā)生泄漏。R本人自食惡果不足惜宅楞,卻給世界環(huán)境...
    茶點故事閱讀 39,887評論 3 312
  • 文/蒙蒙 一针姿、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧厌衙,春花似錦搓幌、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,741評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至饲趋,卻和暖如春拐揭,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背奕塑。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評論 1 265
  • 我被黑心中介騙來泰國打工堂污, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人龄砰。 一個月前我還...
    沈念sama閱讀 46,316評論 2 360
  • 正文 我出身青樓盟猖,卻偏偏與公主長得像,于是被迫代替她去往敵國和親换棚。 傳聞我的和親對象是個殘疾皇子式镐,可洞房花燭夜當晚...
    茶點故事閱讀 43,490評論 2 348

推薦閱讀更多精彩內容