李歡歡VUE實(shí)訓(xùn)一

1.安裝 nodejs

2.安裝 git

3.下載vue-element-admin

<meta charset="utf-8">

建議

本項(xiàng)目的定位是后臺(tái)集成方案,不太適合當(dāng)基礎(chǔ)模板來(lái)進(jìn)行二次開(kāi)發(fā)。因?yàn)楸卷?xiàng)目集成了很多你可能用不到的功能追葡,會(huì)造成不少的代碼冗余绍弟。如果你的項(xiàng)目不關(guān)注這方面的問(wèn)題录粱,也可以直接基于它進(jìn)行二次開(kāi)發(fā)。

集成方案:vue-element-admin

基礎(chǔ)模板:vue-admin-template

桌面終端:electron-vue-admin

Typescript 版:vue-typescript-admin-template(鳴謝:@Armour)

Others:awesome-project

先安裝好環(huán)境

# clone the project

git clone https://github.com/PanJiaChen/vue-admin-template.git

# enter the project directory

cd vue-admin-template

# install dependency

npm install

# develop

npm run dev

效果截圖

image.png

啟動(dòng)成功

刪除多余界面 router/index

刪除后的界面如下

importVuefrom'vue'importRouterfrom'vue-router'Vue.use(Router)/* Layout */importLayoutfrom'@/layout'/**

* Note: sub-menu only appear when route children.length >= 1

* Detail see: https://panjiachen.github.io/vue-element-admin-site/guide/essentials/router-and-nav.html

*

* hidden: true? ? ? ? ? ? ? ? ? if set true, item will not show in the sidebar(default is false)

* alwaysShow: true? ? ? ? ? ? ? if set true, will always show the root menu

*? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? if not set alwaysShow, when item has more than one children route,

*? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? it will becomes nested mode, otherwise not show the root menu

* redirect: noRedirect? ? ? ? ? if set noRedirect will no redirect in the breadcrumb

* name:'router-name'? ? ? ? ? ? the name is used by <keep-alive> (must set!!!)

* meta : {

? ? roles: ['admin','editor']? ? control the page roles (you can set multiple roles)

? ? title: 'title'? ? ? ? ? ? ? the name show in sidebar and breadcrumb (recommend set)

? ? icon: 'svg-name'? ? ? ? ? ? the icon show in the sidebar

? ? breadcrumb: false? ? ? ? ? ? if set false, the item will hidden in breadcrumb(default is true)

? ? activeMenu: '/example/list'? if set path, the sidebar will highlight the path you set

? }

*//**

* constantRoutes

* a base page that does not have permission requirements

* all roles can be accessed

*/exportconstconstantRoutes=[{path:'/login',component:()=>import('@/views/login/index'),hidden:true},{path:'/404',component:()=>import('@/views/404'),hidden:true},{path:'/',component:Layout,redirect:'/dashboard',children:[{path:'dashboard',name:'Dashboard',component:()=>import('@/views/dashboard/index'),meta:{title:'Dashboard',icon:'dashboard'}}]},// 404 page must be placed at the end !!!{path:'*',redirect:'/404',hidden:true}]constcreateRouter=()=>newRouter({// mode: 'history', // require service supportscrollBehavior:()=>({y:0}),routes:constantRoutes})constrouter=createRouter()// Detail see: https://github.com/vuejs/vue-router/issues/1234#issuecomment-357941465exportfunctionresetRouter(){constnewRouter=createRouter()router.matcher=newRouter.matcher// reset router}exportdefaultrouter

安裝ES6語(yǔ)法插件

npm install --save es6-promise

使用老師寫(xiě)的的Axios 插件

image.png

http.js存放位置

http.js ↓

importVuefrom'vue';importAxiosfrom'axios';import{Promise}from'es6-promise';import{MessageBox,Message}from'element-ui'Axios.defaults.timeout=30000;// 1分鐘Axios.defaults.baseURL='';Axios.interceptors.request.use(function(config){// Do something before request is sent//change method for get/*if(process.env.NODE_ENV == 'development'){

? ? ? config['method'] = 'GET';

? ? ? console.log(config)

? }*/if(config['MSG']){// Vue.prototype.$showLoading(config['MSG']);}else{// Vue.prototype.$showLoading();}// if(user.state.token){//用戶登錄時(shí)每次請(qǐng)求將token放入請(qǐng)求頭中//? config.headers["token"] = user.state.token;// }if(config['Content-Type']==='application/x-www-form-urlencoded;'){//默認(rèn)發(fā)application/json請(qǐng)求,如果application/x-www-form-urlencoded;需要使用transformRequest對(duì)參數(shù)進(jìn)行處理/*config['Content-Type'] = 'application/x-www-form-urlencoded;charset=UTF-8';*/config.headers['Content-Type']='application/x-www-form-urlencoded;charset=UTF-8';config['transformRequest']=function(obj){varstr=[];for(varpinobj)str.push(encodeURIComponent(p)+"="+encodeURIComponent(obj[p]));returnstr.join("&")};}//config.header['Content-Type'] = 'application/x-www-form-urlencoded; charset=UTF-8';returnconfig;},function(error){// Do something with request error// Vue.$vux.loading.hide()returnPromise.reject(error);});Axios.interceptors.response.use(response=>{// Vue.$vux.loading.hide();returnresponse.data;},error=>{// Vue.$vux.loading.hide();if(error.response){switch(error.response.status){case404:Message({message:''||'Error',type:'error',duration:5*1000})break;default:Message({message:''||'Error',type:'error',duration:5*1000})}}elseif(errorinstanceofError){console.error(error);}else{Message({message:''||'Error',type:'error',duration:5*1000})}returnPromise.reject(error.response);});exportdefaultVue.prototype.$http=Axios;

配置axios代理:

image.png

'use strict'constpath=require('path')constdefaultSettings=require('./src/settings.js')functionresolve(dir){returnpath.join(__dirname,dir)}constname=defaultSettings.title||'vue Admin Template'// page title// If your port is set to 80,// use administrator privileges to execute the command line.// For example, Mac: sudo npm run// You can change the port by the following methods:// port = 9528 npm run dev OR npm run dev --port = 9528constport=process.env.port||process.env.npm_config_port||9528// dev port// All configuration item explanations can be find in https://cli.vuejs.org/config/module.exports={/**

? * You will need to set publicPath if you plan to deploy your site under a sub path,

? * for example GitHub Pages. If you plan to deploy your site to https://foo.github.io/bar/,

? * then publicPath should be set to "/bar/".

? * In most cases please use '/' !!!

? * Detail: https://cli.vuejs.org/config/#publicpath

? */publicPath:'/',outputDir:'dist',assetsDir:'static',lintOnSave:process.env.NODE_ENV==='development',productionSourceMap:false,devServer:{port:port,open:true,overlay:{warnings:false,errors:true},proxy:{// change xxx-api/login => mock/login// detail: https://cli.vuejs.org/config/#devserver-proxy[process.env.VUE_APP_BASE_API]:{target:`http://127.0.0.1:${port}/mock`,changeOrigin:true,pathRewrite:{['^'+process.env.VUE_APP_BASE_API]:''}},['/api']:{target:`http://127.0.0.1:3000`,changeOrigin:true,pathRewrite:{['^'+'/api']:''}}},after:require('./mock/mock-server.js')},configureWebpack:{// provide the app's title in webpack's name field, so that// it can be accessed in index.html to inject the correct title.name:name,resolve:{alias:{'@':resolve('src')}}},chainWebpack(config){config.plugins.delete('preload')// TODO: need testconfig.plugins.delete('prefetch')// TODO: need test// set svg-sprite-loaderconfig.module.rule('svg').exclude.add(resolve('src/icons')).end()config.module.rule('icons').test(/\.svg$/).include.add(resolve('src/icons')).end().use('svg-sprite-loader').loader('svg-sprite-loader').options({symbolId:'icon-[name]'}).end()// set preserveWhitespaceconfig.module.rule('vue').use('vue-loader').loader('vue-loader').tap(options=>{options.compilerOptions.preserveWhitespace=truereturnoptions}).end()config// https://webpack.js.org/configuration/devtool/#development.when(process.env.NODE_ENV==='development',config=>config.devtool('cheap-source-map'))config.when(process.env.NODE_ENV!=='development',config=>{config.plugin('ScriptExtHtmlWebpackPlugin').after('html').use('script-ext-html-webpack-plugin',[{// `runtime` must same as runtimeChunk name. default is `runtime`inline:/runtime\..*\.js$/}]).end()config.optimization.splitChunks({chunks:'all',cacheGroups:{libs:{name:'chunk-libs',test:/[\\/]node_modules[\\/]/,priority:10,chunks:'initial'// only package third parties that are initially dependent},elementUI:{name:'chunk-elementUI',// split elementUI into a single packagepriority:20,// the weight needs to be larger than libs and app or it will be packaged into libs or apptest:/[\\/]node_modules[\\/]_?element-ui(.*)/// in order to adapt to cnpm},commons:{name:'chunk-commons',test:resolve('src/components'),// can customize your rulesminChunks:3,//? minimum common numberpriority:5,reuseExistingChunk:true}}})config.optimization.runtimeChunk('single')})}}

main.js中加入http

importhttpfrom'./utils/http'Vue.use(http)

<meta charset="utf-8">

<article class="_2rhmJa">

image

index.vue ↓

<template><divclass="dashboard-container">歡迎</div></template><script>import { mapGetters } from 'vuex'? export default {? ? name: 'Dashboard',? ? computed: {? ? ? ...mapGetters([? ? ? ? 'name'? ? ? ])? ? },? ? mounted(){? ? ? this.$http.get('/api/users/add').then(res => {? ? ? ? console.log('this.panels', res)? ? ? })? ? }? }</script><stylelang="scss"scoped>.dashboard {? ? &-container {? ? ? margin: 30px;? ? }? ? &-text {? ? ? font-size: 30px;? ? ? line-height: 46px;? ? }? }</style>

6.全局安裝koa-generator,執(zhí)行下面命令

npm install -g koa-generator

7.構(gòu)建koa2項(xiàng)目代碼如下

koa2 projectName

構(gòu)建成功信息:

D:\project>koa2 projectName? create:projectName? create:projectName/package.json? create:projectName/app.js? create:projectName/publiccreate:projectName/public/images? create:projectName/routes? create:projectName/routes/index.js? create:projectName/routes/users.js? create:projectName/views? create:projectName/views/index.pug? create:projectName/views/layout.pug? create:projectName/views/error.pug? create:projectName/public/stylesheets? create:projectName/public/stylesheets/style.css? create:projectName/bin? create:projectName/bin/www? install dependencies:>cd projectName&&npm install? run the app:>SETDEBUG=koa*&npm start projectName? create:projectName/public/javascriptsD:\project>

初始化后臺(tái)項(xiàng)目插件疮鲫,命令屬下:

cd projectName

初始化項(xiàng)目蘸劈,如果沒(méi)有安裝git會(huì)報(bào)錯(cuò).

npm install

項(xiàng)目試運(yùn)行

npm run dev

這里koa2模板提示信息做的并不好昏苏,沒(méi)有輸出測(cè)試地址,成功后出現(xiàn)如下界面代表成功了威沫。

D:\project\projectName>npm run dev>projectName@0.1.0dev D:\project\projectName>nodemon bin/www[nodemon]1.19.4[nodemon]to restart at any time,enter `rs`[nodemon]watchingdir(s):*.*[nodemon]watching extensions:js,mjs,json[nodemon]starting `node bin/www`

在瀏覽器打開(kāi)地址:

http://localhost:3000/

出現(xiàn)koa2的歡迎界面就代表成功了贤惯。

8.安裝本地mongodb或者在mongodb官網(wǎng)新建免費(fèi)的云端服務(wù)器。

本人在這里用的mongodb免費(fèi)云端數(shù)據(jù)庫(kù)棒掠。

抱歉密碼不能公開(kāi)孵构,請(qǐng)自行換成自己的密碼

鏈接如下:

本人數(shù)據(jù)庫(kù)名為lhh_data

mongodb+srv://xxwozixin:@cluster0-7d5kk.mongodb.net/test?retryWrites=true&w=majority

安裝mongoose

npm install mongoose --save

在第7步建好的nodejs項(xiàng)目中根目錄創(chuàng)建db目錄

作者用的webstorm,可以根據(jù)自己需要下載編輯器

image

下面代碼中連接密碼需要修改成自己的

config.js ↓

module.exports={// dbs: 'mongodb://139.159.253.110:27017/test1'mongodb+srv://用戶名:<password>@cluster0.rfgfj.mongodb.net/庫(kù)名?retryWrites=true&w=majority}

user.js ↓

constmongoose=require('mongoose')constfeld={name:String,age:Number,//人物標(biāo)簽labels:Number}//自動(dòng)添加更新時(shí)間創(chuàng)建時(shí)間:letpersonSchema=newmongoose.Schema(feld,{timestamps:{createdAt:'created',updatedAt:'updated'}})module.exports=mongoose.model('User',personSchema)

修改根目錄app.js

constKoa=require('koa')constapp=newKoa()constviews=require('koa-views')constjson=require('koa-json')constonerror=require('koa-onerror')constbodyparser=require('koa-bodyparser')constlogger=require('koa-logger')constindex=require('./routes/index')constusers=require('./routes/users')constmongoose=require('mongoose')constdbconfig=require('./db/config')mongoose.connect(dbconfig.dbs,{useNewUrlParser:true,useUnifiedTopology:true})constdb=mongoose.connectiondb.on('error',console.error.bind(console,'connection error:'));db.once('open',function(){console.log('mongoose 連接成功')});// error handleronerror(app)// middlewaresapp.use(bodyparser({enableTypes:['json','form','text']}))app.use(json())app.use(logger())app.use(require('koa-static')(__dirname+'/public'))app.use(views(__dirname+'/views',{extension:'pug'}))// loggerapp.use(async(ctx,next)=>{conststart=newDate()awaitnext()constms=newDate()-startconsole.log(`${ctx.method} ${ctx.url} - ${ms}ms`)})// routesapp.use(index.routes(),index.allowedMethods())app.use(users.routes(),users.allowedMethods())// error-handlingapp.on('error',(err,ctx)=>{console.error('server error',err,ctx)});module.exports=app// error handleronerror(app)// middlewaresapp.use(bodyparser({enableTypes:['json','form','text']}))app.use(json())app.use(logger())app.use(require('koa-static')(__dirname+'/public'))app.use(views(__dirname+'/views',{extension:'pug'}))// loggerapp.use(async(ctx,next)=>{conststart=newDate()awaitnext()constms=newDate()-startconsole.log(`${ctx.method} ${ctx.url} - ${ms}ms`)})// routesapp.use(index.routes(),index.allowedMethods())app.use(users.routes(),users.allowedMethods())// error-handlingapp.on('error',(err,ctx)=>{console.error('server error',err,ctx)});module.exports=app

user.js ↓

constrouter=require('koa-router')()constUser=require('../db/models/user')router.prefix('/users')router.get('/add',function(ctx,next){ctx.body='this is a users/bar response'})router.get('/',function(ctx,next){ctx.body='this is a users response!'})router.get('/bar',function(ctx,next){ctx.body='this is a users/bar response'})module.exports=router

重啟項(xiàng)目

關(guān)掉前面我們啟動(dòng)的服務(wù)在運(yùn)行

npm run dev

如下結(jié)果代表成功連接數(shù)據(jù)庫(kù)

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市烟很,隨后出現(xiàn)的幾起案子颈墅,更是在濱河造成了極大的恐慌,老刑警劉巖溯职,帶你破解...
    沈念sama閱讀 218,755評(píng)論 6 507
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件精盅,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡谜酒,警方通過(guò)查閱死者的電腦和手機(jī)叹俏,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 93,305評(píng)論 3 395
  • 文/潘曉璐 我一進(jìn)店門(mén),熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)僻族,“玉大人粘驰,你說(shuō)我怎么就攤上這事∈雒矗” “怎么了蝌数?”我有些...
    開(kāi)封第一講書(shū)人閱讀 165,138評(píng)論 0 355
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)度秘。 經(jīng)常有香客問(wèn)我顶伞,道長(zhǎng),這世上最難降的妖魔是什么剑梳? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 58,791評(píng)論 1 295
  • 正文 為了忘掉前任唆貌,我火速辦了婚禮,結(jié)果婚禮上垢乙,老公的妹妹穿的比我還像新娘锨咙。我一直安慰自己,他們只是感情好追逮,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,794評(píng)論 6 392
  • 文/花漫 我一把揭開(kāi)白布酪刀。 她就那樣靜靜地躺著粹舵,像睡著了一般。 火紅的嫁衣襯著肌膚如雪骂倘。 梳的紋絲不亂的頭發(fā)上眼滤,一...
    開(kāi)封第一講書(shū)人閱讀 51,631評(píng)論 1 305
  • 那天,我揣著相機(jī)與錄音历涝,去河邊找鬼柠偶。 笑死,一個(gè)胖子當(dāng)著我的面吹牛睬关,可吹牛的內(nèi)容都是我干的诱担。 我是一名探鬼主播,決...
    沈念sama閱讀 40,362評(píng)論 3 418
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼电爹,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼蔫仙!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起丐箩,我...
    開(kāi)封第一講書(shū)人閱讀 39,264評(píng)論 0 276
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤摇邦,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后屎勘,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體施籍,經(jīng)...
    沈念sama閱讀 45,724評(píng)論 1 315
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,900評(píng)論 3 336
  • 正文 我和宋清朗相戀三年概漱,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了丑慎。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 40,040評(píng)論 1 350
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡瓤摧,死狀恐怖竿裂,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情照弥,我是刑警寧澤腻异,帶...
    沈念sama閱讀 35,742評(píng)論 5 346
  • 正文 年R本政府宣布,位于F島的核電站这揣,受9級(jí)特大地震影響悔常,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜给赞,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,364評(píng)論 3 330
  • 文/蒙蒙 一机打、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧塞俱,春花似錦姐帚、人聲如沸吏垮。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 31,944評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至唯蝶,卻和暖如春九秀,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背粘我。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 33,060評(píng)論 1 270
  • 我被黑心中介騙來(lái)泰國(guó)打工鼓蜒, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人征字。 一個(gè)月前我還...
    沈念sama閱讀 48,247評(píng)論 3 371
  • 正文 我出身青樓都弹,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親匙姜。 傳聞我的和親對(duì)象是個(gè)殘疾皇子畅厢,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,979評(píng)論 2 355

推薦閱讀更多精彩內(nèi)容