vuex+axios+es6+vue-router+elementui管理系统实践

创建项目


vue create vuextest2

cd vuextest2

yarn serve

  • 安装vuex ,vue-router, element-ui

// 安装 vuex

npm install vuex --save

//或

yarn add vuex

//安装vue-router

npm install --save vue-router

//安装element-ui

npm i element-ui -S

  • 在src下创建router文件夹router/index.js

import Vue from "vue";

import Router from "vue-router";

// 引入组件

import Login from "@/components/login";

//注册组件

Vue.use(Router);

//导出组件

export default new Router({

  routes: [

    {

      path: "/",

      name: "login",

      component: Login

    }

  ],

  mode: "history" //去除地址栏中的#号

});

  • main.js中引入路由

import router from "./router";

Vue.config.productionTip = false;

new Vue({

  router,

  render: h => h(App)

}).$mount("#app");

  • 引入 Element

//在 main.js 中添加以下内容:

import ElementUI from 'element-ui'

import 'element-ui/lib/theme-chalk/index.css'

Vue.use(ElementUI)

  • 引入重置样式reset.css

在src下新建css/reset.css文件网上下载reset.css样式,

在index.html中:


<link rel="stylesheet" href="../src/static/css/reset.css">

vue中的节点操作ref和this.$refs.名称


<div id="app">

    <input type="text" ref="input1" class="input1"/>

    <button @click="add">添加</button>

</div>

<script>

new Vue({

    el: "#app",

    methods:{

        add:function(){

          this.$refs.input1.value ="22"; //this.$refs.input1  减少获取dom节点的消耗

        }

    }

})

</script>

一般来讲,获取DOM元素,需document.querySelector(".input1")获取这个dom节点,然后在获取input1的值。

但是用ref绑定之后,我们就不需要在获取dom节点了,直接在上面的input上绑定input1,然后$refs里面调用就行。

然后在javascript里面这样调用:this.$refs.input1 这样就可以减少获取dom节点的消耗了。

前后端数据交互--axios

  • 安装axios

npm i -S axios

  • 在main.js中

// 引入axios

import axios from "axios";

// 挂载在vue的原型上,这样每个vue实例都可以使用这个方法

Vue.prototype.axios = axios;

用node.js启动一个后端服务接口


//全局安装express

npm install express -g

npm install -g express-generator

//创建服务项目

express server -e

// 初始化项目

cd server

npm install

//启动服务器

nodemon app

解决跨域问题 --- 配置代理

创建vue.config.js文件


module.exports = {

  devServer: {

  proxy: {

    '/api': {

      target: 'http://localhost:888',

      ws: true,

      changeOrigin: true,

      pathRewrite: {

        '^/api': ''  //通过pathRewrite重写地址,将前缀/api转为/

      }

    }

  }

}

//在页面发起请求:

axios.get('/api/address').then(res => {

  console.log(res)

})

此处改为请求https://jsonplaceholder.typicode.com/users接口数据

登录成功后请求到数据,利用vuex存储数据

创建index.vue后台页面,然后配置路由

vue组件异步加载

  1. 使用() => import()

const ImportFuncDemo1 = () => import('../components/ImportFuncDemo1')

  1. 使用resolve => require(['./_account'], resolve)
  1. 使用Webpack 的内置语句: import(*)

vuex数据处理

  • 安装

npm i vuex -S

创建store/store.js文件


import Vue from "vue";

import Vuex from "vuex";

Vue.use(Vuex);

const state = {

  userInfo: {}

};

const mutations = {

  SAVE_USERINFO(state, userInfo) {

    state.userInfo = userInfo;

  }

};

export default new Vuex.Store({

  state,

  mutations

});

在main.js中引入store


import store from "./store/store";

new Vue({

  router,

  store,

  render: h => h(App)

}).$mount("#app");

一般在组件中触发mutations


// login.vue中

_this.$store.commit("SAVE_USERINFO",response.data[0])

在刷新页面后要确保数据依然存在,则需要在拿到数据后将其存入本地存储


localStorage.setItem('userInfo',JSON.stringify(response.data[0]));

上面做法任然会在刷新后数据没有,采取以下做法:直接将数据提交到store的state中,然后在mutations 中先将数据存到本地存储,然后再更新数据.


const state = {

  userInfo: JSON.parse(localStorage.getItem("userInfo"))

};

const mutations = {

  SAVE_USERINFO(state, userInfo) {

    // 先将数据存到本地存储

    localStorage.setItem("userInfo", JSON.stringify(userInfo));

    state.userInfo = userInfo;

  }

};

在组件中获取state有两种方式(home.vue)

第一种在组件中直接拿


<span>{{$store.state.userInfo.username}}</span>

第二种通过计算属性computed获取store的数据


computed: {

    username() {

      return this.$store.state.userInfo.username;

    }

  }

  • mapState辅助函数(推荐使用)

import {mapState} from "vuex";

computed:{

  ...mapState({

    userinfo:state => state.userInfo;

  })

}

actions处理异步操作


// store.js

// 1. 在state中添加userList存储用户列表的数据

const state = {

  userInfo: JSON.parse(localStorage.getItem("userInfo")),

  userList: []

};

// 2. 在mutations中添加获取用户列表的函数

const mutations = {

  GET_USERLIST(state,userlist){

    state.userList = userlist;

  }

}

// 定义actions,异步的,主要是用来commit mutations,再有mutations来改变状态state

const actions = {

  GET_USERLIST({ commit }) {

    return new Promise((resolve, reject) => {

      // 此处的请求为异步操作 为了能拿到数据,就在外面包一层promise

      axios.get("https://jsonplaceholder.typicode.com/users").then(res => {

        //   console.log("获取用户数据", res.data);

        commit("GET_USERLIST", res.data);

        resolve();

      });

    });

  }

};

//main.js触发actions测试数据获取

store.dispatch("GET_USERLIST").then(() => {

  console.log("获取数据:", store.state.userList);

});

在用户列表组件里,可在生命周期钩子函数里去获取数据


// userlist.vue

created(){

  this.$store.dispatch("GET_USERLIST").then(()=>{

    const data = this.$store.state.userList;

    this.tableData = data;

  })

}

可以用辅助函数来简化操作:


import {mapState,mapActions} from "vuex";

// mapState

created() {

  this.$store.dispatch("GET_USERLIST").then(() => {

    //   const data = this.$store.state.userList;

    //   this.tableData = data;

    this.tableData = this.userList;

  });

},

computed:{

  // ...mapState(["userList"])

  ...mapState({

    userList:state => state.userList;

  })

}


//mapActions

created(){

  this.GET_USERLIST().then(() => {

    this.tableData = this.userList;

  })

},

methods:{

  ...mapActions(["GET_USERLIST"]);

}

Getter

有时候我们需要从 store 中的 state 中派生出一些状态,例如对列表进行过滤并计数.

Vuex在store中定义的getters可以认为是store的计算属性,getters的返回值会根据它的依赖被缓存起来,且只有当它的以来至发生改变才会被重新计算。

Getter接受state作为第一个参数,Getter会暴露为store.getters对象,你可以以属性的形式访问这些值。

你也可以通过让 getter 返回一个函数,来实现给 getter 传参。在你对 store 里的数组进行查询时非常有用。


getters:{

  getTodoById:(state) => (id) => {

    return state.todos.find(todo => todo.id === id);

  }

}

注意,getter 在通过方法访问时,每次都会去进行调用,而不会缓存结果。

辅助函数mapGetters

mapGetters 辅助函数仅仅是将store中的getter映射到局部计算属性:

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,377评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,390评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,967评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,344评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,441评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,492评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,497评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,274评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,732评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,008评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,184评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,837评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,520评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,156评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,407评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,056评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,074评论 2 352

推荐阅读更多精彩内容