官网下载node:https://nodejs.org/zh-cn/download/javascript
node -V #node版本 npm -V #npm版本
npm install vue npm install --global vue-cli
vue init webpack vue-study #初始化 cd vue-study #进入项目文件夹
项目建立好css
npm run dev
项目运行成功html
"lint-fix": "eslint --fix --ext .js --ext .jsx --ext .vue src/",
格式错误能够经过vue
npm run lint-fix
安装vuexjava
npm i vuex -D
新建store文件夹及其如下文件node
import Vue from 'vue' import vuex from 'vuex' import mutations from './mutations/mutations' import actions from './actions/actions' import getters from './getters/getters' import state from './state/state' Vue.use(vuex) export default new vuex.Store({ state, getters, actions, mutations })
store/store.jsjquery
import store from './store/store' new Vue({ el: '#app', router, store, components: { App }, template: '<App/>' })
引入storewebpack
A.state和gettersios
state/state.jsweb
getters.js
mutations.js,actions.js都是export default{}形式
export default { name: 'App', mounted: function () { this.useStore() }, methods: { useStore () { console.log(this.$store.state.count) // -> 0 } }, computed: { fullName () { return this.$store.getters.fullName } } }
App.vue
npm run dev
运行
打印出store里的state,获得getters里面的值
B.mutations,actions
export default { updateCountAsync (store, data) { setTimeout(() => { store.commit('updateCount', { num: data.num }) }, data.time) } }
actions.js
export default { updateCount (state, {num, num2}) { state.count = num } }
mutations
dispatch用来触发actions,和commit用来触发mutations同样
{{this.$store.state.count}} mounted: function () { this.useStore() this.useMutations() // 执行后当即变成20 this.$store.dispatch('updateCountAsync', { num: 5, time: 2000 }) // 执行后2秒变成5 }, methods: { useStore () { console.log(this.$store.state.count) // -> 0 }, useMutations () { this.$store.commit('updateCount', { num: 20, num2: 2 }) } },
App.vue
npm run dev
2秒以后从20变成5
C.让store使用更便捷
<script> import { mapState, mapGetters } from 'vuex' export default { name: 'App', mounted: function () { }, methods: { }, computed: { ...mapState(['count']), ...mapGetters(['fullName']) } }
使用map语法更简洁得到state和getters里的值。
A.axios和proxyTable解决get跨域问题
npm i axios -D #安装axios
import axios from 'axios' Vue.prototype.$axios = axios
src/main.js全局添加axios
拿到一个本地数据
jsonview后的视图
proxyTable: { '/api': { target: 'http://localhost:8000', changeOrigin: true, pathRewrite: { '^/api': '/' } } },
config/index.js
API_HOST: '/api/'
condfig/dev.env.js增长API_HOST
API_HOST: '"http:/xxx.xxx.xxx.xxx:8000"' // 生产环境的地址,上线后修改
config/prod.env.js增长线上地址接口
mounted: function () { this.getapi() }, methods: { getapi () { this.$axios.get('/api/article/', { params: {format: 'json'} }) .then((res) => { console.log(res) }) .catch(function (error) { console.log(error) }) } }
App.vue内调用,注意接口格式
npm run dev
启动开发环境
查看控制台输出跨域接口信息
B.qs解决post发送兼容问题
import qs from 'qs' Vue.prototype.$axios = axios Vue.prototype.$qs = qs
main.js
postapi () { let data = this.$qs.stringify({'schools': 1, 'id': 1}) /* 接口请求 */ this.$axios.post('/api/userSchoolFav/', data) .then((res) => { console.log('POST数据Fav返回值:', res) }) .catch(function (error) { console.log(error) }) }
或者qs非全局注册
import Qs from 'qs' export default { methods:{ postapi () { let data = Qs.stringify({'schools': 1, 'id': 1}) /* 接口请求 */ this.$axios.post('/api/userSchoolFav/', data) .then((res) => { console.log('POST数据Fav返回值:', res) }) .catch(function (error) { console.log(error) }) } }
当前页面引入并使用
C.解决跨域携带token信息(JWT的方式不是cookie,因此这里暂时用不上)
axios.defaults.withCredentials = true // 容许跨域携带cookie信息
以jwt的token为例:
参考:https://my.oschina.net/u/3018050/blog/2054854
安装jquery
npm install jquery -D
const webpack = require('webpack')
plugins: [ new webpack.ProvidePlugin({ $: "jquery", jQuery: "jquery", jquery: "jquery", "window.jQuery": "jquery" }) ],
添加build/webpack.base.conf.js相关plugin
import 'jquery'
main.js
jquery: true// 添加
能够得到到,jquery可使用
安装styl-loader
npm install stylus stylus-loader -D
<style scoped lang="stylus">
语言上lang='stylus'便可
<style lang="stylus"> @import "assets/base.styl"
外部引用
以element UI为例
安装element ui
npm i element-ui -S #安装element-ui npm i sass-loader node-sass -D #安装sass-loader,node-sass
/* 改变主题色变量 */ $--color-primary: teal; /* 改变 icon 字体路径变量,必需 */ $--font-path: '../../node_modules/element-ui/lib/theme-chalk/fonts'; @import "../../node_modules/element-ui/packages/theme-chalk/src/index";
新建src/assets/element-variables.scss文件
import Element from 'element-ui' import './assets/element-variables.scss' Vue.use(Element)
使用element ui
主要按钮的主题色定义好
在main.js里添加每一个跳转前的路由钩子。这里是经过JWTtoken是否存在,以及跳转页面是否为登陆页、注册页、或者我的中心(例如我的信息页面)等,肯定对localstorage里存储的token是否进行删除,以及是否须要跳转回登陆页面
对request拦截,判断localstorage里的token是否存在,来添加authorization认证信息,确保登陆成功的状态下,每次发送信息携带JWTtoken,使得一些须要用户权限的页面可以顺利经过
对response拦截,判断返回信息中是否有用户未登陆401,或者登陆认证错误403的状况,若是有,则返回登陆页面
这里对路由钩子和http拦截判断打印数字,以便在控制台更好看到操做时,走的逻辑路径
// The Vue build version to load with the `import` command // (runtime-only or standalone) has been set in webpack.base.conf with an alias. import Vue from 'vue' import App from './App' import router from './router' import store from './store/store' import axios from 'axios' import qs from 'qs' // import 'jquery' import Element from 'element-ui' import './assets/element-variables.scss' import IndexHeader from '@/layout/Header' import IndexFooter from '@/layout/Footer' import Banner from '@/components/Banner' import Pages from '@/components/Pages' Vue.use(Element) Vue.component('IndexHeader', IndexHeader) Vue.component('IndexFooter', IndexFooter) Vue.component('Banner', Banner) Vue.component('Pages', Pages) router.beforeEach(({name}, from, next) => { // 获取 JWT Token if (localStorage.getItem('JWT_TOKEN')) { // JWT_TOKEN存在 console.log(1) if (name === 'login' || name === 'register') { // 登陆按钮点击,清楚JWT Token store.commit('DELSTORELOG') console.log(2) next() } else { // 其余页面返回 console.log(3) next() } } else { // JWT_TOKEN不存在 console.log(4) if (name === 'Information') { // 查看我的信息页面 console.log(5) next({name: 'login'}) } else { console.log(6) next() } } }) // http request 拦截器 axios.interceptors.request.use( config => { if (localStorage.JWT_TOKEN) { // 判断是否存在token,若是存在的话,则每一个http header都加上token console.log(7) config.headers.Authorization = `JWT ${localStorage.JWT_TOKEN}` console.log('存在', localStorage.JWT_TOKEN) } else { console.log('不存在') } return config }, err => { console.log(8) return Promise.reject(err) }) // http response 拦截器 axios.interceptors.response.use( response => { console.log(9) return response }, error => { console.log(10) if (error.response) { console.log(11) console.log('axios:' + error.response.status) switch (error.response.status) { case 401: // 返回 401 清除token信息并跳转到登陆页面 store.commit('DELSTORELOG') router.replace({ path: 'login', query: {redirect: router.currentRoute.fullPath} }) break case 403: // 返回 403 清除token信息并跳转到登陆页面 store.commit('DELSTORELOG') router.replace({ path: 'login', query: {redirect: router.currentRoute.fullPath} }) break } } return Promise.reject(error.response.data) // 返回接口返回的错误信息 }) Vue.prototype.$axios = axios Vue.prototype.$qs = qs axios.defaults.withCredentials = true // 容许跨域携带cookie信息(例如session等),使用localstorage设置为false Vue.config.productionTip = false /* eslint-disable no-new */ new Vue({ el: '#app', router, store, components: { App }, template: '<App/>' })
main.js
SETUSERINFO (state, info) { state.userInfo = info }
this['SETSTORELOG'](res.data.token)
import { SETUSERINFO } from '../mutation-types.js' export default { [SETUSERINFO] (state, info) { state.userInfo = info } }
新建store/mutation-types.js
this.SETSTORELOG(res.data.token)
1)增长mutation-types.js后,须要在mutations.js里引入,而且将全部方法名用[]括起来。
2)二者引入都徐亚用map from vuex的方式,而且在methods里添加该方法
3)使用时,无mutation-types须要将方法名用[]括起来,而有mutation-types时,则直接使用,不须要[]
import axios from 'axios' export default { ajaxGet (api, cb) { axios.get(api).then(cb).catch(err => { console.log(err) }) }, ajaxPost (api, post, cb) { axios.post(api, post).then(cb).catch(err => { console.log(err) }) } }
新建src/axios/http.js
import http from './axios/http' Vue.prototype.$http = http
在main.js中引入
<template> <div id="app"> <IndexHeader></IndexHeader> <div @click="GetMethod">axios封装get方法</div> <div @click="PostMethod">axios封装post方法</div> <router-view/> <IndexFooter></IndexFooter> </div> </template> <script> export default { name: 'App', methods: { GetMethod () { this.$http.ajaxGet('/api/article/', res => { console.log('ajaxGet', res) }) }, PostMethod () { this.$http.ajaxPost('/api/userSchoolFav/', {'schools': 1}, res => { console.log('ajaxPost', res) }) } } } </script>
在.vue文件中使用
点击后可在控制台看到相关内容。
这种封装方式更简化了写法,不须要then,catch这些关键字,专心写里面的处理逻辑
由此,咱们能够将一些经常使用方法封装起来
新建src/axios/methods.js来保存经常使用方法,方便在调用
import axios from 'axios' export default { ajaxGetArticle (api) { axios.get(api).then((res) => { console.log('ajaxGetArticle', res) }).catch(err => { console.log(err) }) }, ajaxPostUserSchoolFav (api, post) { axios.post(api, post).then((res) => { console.log('ajaxPostUserSchoolFav', res) }).catch(err => { console.log(err) }) } }
<template> <div id="app"> <IndexHeader></IndexHeader> <div @click="GetMethod">axios封装get方法method</div> <div @click="PostMethod">axios封装post方法method</div> <router-view/> <IndexFooter></IndexFooter> </div> </template> <script> import http from './axios/methods.js' export default { name: 'App', methods: { GetMethod () { http.ajaxGetArticle('/api/article/') }, PostMethod () { http.ajaxPostUserSchoolFav('/api/userSchoolFav/', {'schools': 2}) } } } </script>
.vue里引用方法并使用
能够看到页面可以调用。
目的和使用:
这种方式在rest模式下,当数据格式和返回status一致时,提供很好的使用方法。
好比,咱们要调用不少列表数据时,写了不少不一样的.vue下模板,填充数据,就能够用一条流水线的方式来处理。
把axios发送get请求,对得到列表统一置入当前this的data下,这样的方式封装好。
而后统一在method里使用这个方法带上url参数便可。
固然,填写表单也是这个思路,只是多个post传递数据对象,表单还要对返回的错误提示进行提醒,也就是error里操做显示给用户看。前面咱们都是把method方法和error打印进行统一处理,如今能够针对不一样的error代码独立出来再也不封装便可灵活使用
举例:
import axios from 'axios' export default { ajaxgetList (api, that) { axios.get(api).then((res) => { console.log(res.data.results) if (res.status === 200) { that.list = res.data.results that.allCount = res.data.count } else { that.$message.error('获取失败') } }).catch(err => { console.log('cuole', err) }) } }
axios/methods.js,写入方法,传入that指代this
schoolList局部引入
schoolList一行代码调用
同理,teacherList局部引入
同理,teacherList一行代码调用
如此便可方便使用。
import axios from 'axios' export function ajaxgetList2 (api, that) { axios.get(api).then((res) => { console.log(res.data.results) if (res.status === 200) { that.list = res.data.results that.allCount = res.data.count } else { that.$message.error('获取失败') } }).catch(err => { console.log(err) }) }
若是只是一个方法单独在一个文件里,能够导出为命名方法
两种引用方法均可
使用不须要http下了
import * as types from './mutation-types'; // 提交mutation function makeAction (type) { return ({ commit }, ...args) => commit(type, ...args); }; export const setShopList = makeAction(types.SET_SHOPLIST);
actions.js
import * as types from './mutation-types'; import cookie from '../static/js/cookie'; import {getShopCarts} from '../api/api' // 相似于事件 每一个mutation都有字符类型的事件类型和回调函数 //全局引入vue import Vue from 'vue'; import Axios from 'axios'; Vue.prototype.$http = Axios export default { [types.SET_SHOPLIST] (state) { //设置购物车数据 // token = cookie.getCookie('token') if(cookie.getCookie('token') != null){ getShopCarts().then((response)=> { // 更新store数据 state.goods_list.goods_list = response.data; console.log(response.data) var totalPrice = 0 response.data.forEach(function(entry) { totalPrice += entry.goods.shop_price*entry.nums }); state.goods_list.totalPrice = totalPrice; }).catch(function (error) { console.log(error); }); } }, }
mutations.js
// 获取购物车数据 export const SET_SHOPLIST = 'SET_SHOPLIST';
mutation-types.js
addShoppingCart () { //加入购物车 addShopCart({ goods: this.productId, // 商品id nums: this.buyNum, // 购买数量 }).then((response)=> { this.$refs.model.setShow(); // 更新store数据 this.$store.dispatch('setShopList'); }).catch(function (error) { console.log(error); }); },
.vue中method方法使用
import {getStore} from '../util/mUtils' import axios from 'axios' // 全局状态控制引入 import store from '../store/store' import router from '../router' // http request 拦截器 axios.interceptors.request.use( config => { if (localStorage.JWT_TOKEN) { // 判断是否存在token,若是存在的话,则每一个http header都加上token // 1.不设置有效期 // config.headers.Authorization = `JWT ${localStorage.JWT_TOKEN}` // 2.设置有效期 let JWT_TOKEN = getStore('JWT_TOKEN') config.headers.Authorization = `JWT ${JWT_TOKEN}` } else { } return config }, err => { return Promise.reject(err) }) // http response 拦截器 axios.interceptors.response.use( response => { return response }, error => { if (error.response) { console.log('axios:' + error.response.status) switch (error.response.status) { case 401: // 返回 401 清除token信息并跳转到登陆页面 store.commit('DELTOKEN') router.replace({ path: 'login', query: {redirect: router.currentRoute.fullPath} }) break case 500: console.log('服务器错误') // case 403: // // 返回 403 清除token信息并跳转到登陆页面 // store.commit('DELTOKEN') // router.replace({ // path: 'login', // query: {redirect: router.currentRoute.fullPath} // }) // break } } return Promise.reject(error.response.data) // 返回接口返回的错误信息 })
新建src/axios/index.js,把main.js中关于http拦截器部分所有剪切过来
在main.js中引入
对图片src是否存在,404等状况设置默认图
<!-- 404Img --> <template> <div style="width:100%;height:500px;border:2px solid red"> <img :src="avatar?avatar:defaultNoImage" :onerror="defaultImg" alt="" > </div> </template> <script> export default { name: 'Demo404Img', data () { return { defaultImg: 'this.src="' + require('../assets/images/banner1.jpg') + '"', defaultNoImage: 'this.src="' + require('../assets/images/banner2.jpg') + '"', avatar: '../static/images/avatar-1.jpg' } } } </script>
1.[Vue warn]: You are using the runtime-only build of Vue where the template compiler is not available. Either pre-compile the templates into render functions, or use the compiler-included build.
resolve: { alias: { 'vue$': 'vue/dist/vue.js' } }
2.npm install时,报错:正在生成解决方案配置“Release|x64”。
npm config set sass_binary_site https://npm.taobao.org/mirrors/node-sass/
设置全局镜像源,以后再涉及到 node-sass
的安装时就会从淘宝镜像下载。
3.服务器http://localhost:8080要求用户输入用户名和密码
还未解决
1.vuex官方中文文档:https://vuex.vuejs.org/zh-cn/
2.详解 Vue & Vuex 实践:https://zhuanlan.zhihu.com/p/25042521
3.运用JS设置cookie、读取cookie、删除cookie:https://www.cnblogs.com/limeiky/p/6927305.html
4.Django框架基于session的登陆/注销实现:https://www.cnblogs.com/cllovewxq/p/7878248.html
5.先后端分离之JWT(JSON Web Token)的使用:http://www.javashuo.com/article/p-pylxbsfz-mt.html
6.Vue 中使用 jQuery:https://blog.csdn.net/anxin_wang/article/details/78788773
7.在vue项目中使用stylus:https://blog.csdn.net/shooke/article/details/75907388
8.Vue的elementUI实现自定义主题:https://blog.csdn.net/wangcuiling_123/article/details/78513245
9.【Vue】axios请求的方法封装和运用:https://blog.csdn.net/lgysjfs/article/details/80407130
10.node-sass 安装失败的解决办法:https://lzw.me/a/node-sass-install-helper.html#%E8%A7%A3%E5%86%B3%E6%96%B9%E6%B3%95%E4%B8%80%EF%BC%9A%E4%BD%BF%E7%94%A8%E6%B7%98%E5%AE%9D%E9%95%9C%E5%83%8F%E6%BA%90
11.vue 显示图片404的解决办法:https://blog.csdn.net/qq_15576765/article/details/83823700