您好,登錄后才能下訂單哦!
這篇文章主要講解了“怎么解決vuejs沒有dev的問題”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“怎么解決vuejs沒有dev的問題”吧!
vuejs沒有dev的解決辦法:1、打開webpack-dev-conf.js文件;2、通過路由請求數據;3、找到devServer,在里面加上before方法即可。
本文操作環境:windows7系統、vue2.9.6版,DELL G3電腦。
如何解決vuejs 沒有dev的問題?最新的vue沒有dev-server.js文件,如何進行后臺數據模擬?
最新的vue里dev-server.js被替換成了webpack-dev-conf.js
在模擬后臺數據的時候直接在webpack-dev-conf.js文件中修改
第一步,在const portfinder = require(‘portfinder’)后添加
//第一步 const express = require('express') const app = express()//請求server var appData = require('../data.json')//加載本地數據文件 var seller = appData.seller//獲取對應的本地數據 var goods = appData.goods var ratings = appData.ratings var apiRoutes = express.Router() app.use('/api', apiRoutes)//通過路由請求數據
第二步:找到devServer,在里面加上before()方法
devServer: { clientLogLevel: 'warning', historyApiFallback: true, hot: true, compress: true, host: HOST || config.dev.host, port: 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, }, //第二步找到devServer,在里面添加 before(app) { app.get('/api/seller', (req, res) => { res.json({ errno: 0, data: seller })//接口返回json數據,上面配置的數據seller就賦值給data請求后調用 }), app.get('/api/goods', (req, res) => { res.json({ errno: 0, data: goods }) }), app.get('/api/ratings', (req, res) => { res.json({ errno: 0, data: ratings }) }) } }
提供一個json.data數據
{ "seller": { "name": "粥品香坊(回龍觀)", "description": "蜂鳥專送", "deliveryTime": 38, "score": 4.2, "serviceScore": 4.1, "foodScore": 4.3, "rankRate": 69.2, "minPrice": 20, "deliveryPrice": 4, "ratingCount": 24, "sellCount": 90, "bulletin": "粥品香坊其烹飪粥料的秘方源于中國千年古法,在融和現代制作工藝,由世界烹飪大師屈浩先生領銜研發。堅守純天然、0添加的良心品質深得消費者青睞,發展至今成為粥類的引領品牌。是2008年奧運會和2013年園博會指定餐飲服務商。", "supports": [ { "type": 0, "description": "在線支付滿28減5" }, { "type": 1, "description": "VC無限橙果汁全場8折" }, { "type": 2, "description": "單人精彩套餐" }, { "type": 3, "description": "該商家支持發票,請下單寫好發票抬頭" }, { "type": 4, "description": "已加入“外賣保”計劃,食品安全保障" } ], "avatar": "http://static.galileo.xiaojukeji.com/static/tms/seller_avatar_256px.jpg", "pics": [ "http://fuss10.elemecdn.com/8/71/c5cf5715740998d5040dda6e66abfjpeg.jpeg?imageView2/1/w/180/h/180", "http://fuss10.elemecdn.com/b/6c/75bd250e5ba69868f3b1178afbda3jpeg.jpeg?imageView2/1/w/180/h/180", "http://fuss10.elemecdn.com/f/96/3d608c5811bc2d902fc9ab9a5baa7jpeg.jpeg?imageView2/1/w/180/h/180", "http://fuss10.elemecdn.com/6/ad/779f8620ff49f701cd4c58f6448b6jpeg.jpeg?imageView2/1/w/180/h/180" ], "infos": [ "該商家支持發票,請下單寫好發票抬頭", "品類:其他菜系,包子粥店", "北京市昌平區回龍觀西大街龍觀置業大廈底商B座102單元1340", "營業時間:10:00-20:30" ] }}
感謝各位的閱讀,以上就是“怎么解決vuejs沒有dev的問題”的內容了,經過本文的學習后,相信大家對怎么解決vuejs沒有dev的問題這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。