Vuex 是一个专为 Vue.js 应用程序开发的状态管理模式, 采用集中式存储管理应用的所有组件的状态,解决多组件数据通信。
要点:
data() { return { 数据, 状态 }}
vue官方提供的独立于组件体系之外的,管理公共数据的工具
大型项目
vuex是vue官方提供的独立于组件体系之外的,管理公共数据的工具
Vuex-学习内容
了解vuex的学习内容
Vuex中有5个内容需要学习:
其中最为重要的内容是state和mutations
小结
五个概念:state, mutations, getters, actions, modules
掌握在vue项目中使用vuex的方式
这里只说明第1种情况。
假设之前已经有一个vue项目了,其中并没有使用vuex,现在我们来用一下。
注意,这里省略用vue脚手架创建项目的过程。
整体步骤:
进入项目目录,安装包
yarn add vuex
开发依赖:
生产依赖:
实例化store
与router一样,当我们在项目中使用vuex之后,为了方便代码维护,我们一般需要做特殊的目录调整,约定的结构如下:
|--src
|----- main.js
|----- store
|----------- index.js
在store/index.js 中放置具体的代码,具体如下:
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)
const store = new Vuex.Store({
state: {
count: 0
}
})
export default store
在src/main.js中:
// 省略其他
// 1. 导入store
import store from './store'
new Vue({
// 省略其他...
store // 2. 注入Vue实例
})
在组件中使用store
在任意组件中,通过this.$store.state
来获取公共数据。
在老项目中使用vuex的步骤
this.$store.state
附 :vue-router的使用方式
目录结构
|- router # 路由
|------ index.js
|- main.js # 项目入口文件
关键代码
// router/index.js
import Vue from 'vue'
import Router from 'vue-router'
Vue.use(Router)
// 默认导出 export defalut
export default new Router({
routes: []
})
掌握state的使用方式
vuex用它来保存公共数据
格式
new Vuex.store({
state: {
属性名: 属性值
}
})
示例
new Vuex.store({
state: {
userInfo: {
name: 'tom',
skills: ['抖音', 'B站', '美团'],
address: '武汉黑马',
logo: 'https://vuejs.org/./images/logo.svg'
// https://www.runoob.com/wp-content/uploads/2016/02/react.png
}
}
})
格式:
在组件中,通过this.$store.state.属性名
来访问。
在模板中,则可以省略this
而直接写成: {{$store.state.属性名}}
vue-devtool调试工具
在调试工具中查看。
state的作用是:保存公共数据(多组件中共用的数据)
state是响应式的: 如果修改了数据,相应的在视图上的值也会变化。
掌握mutations的作用及格式; 能用它来修改state
通过调用mutations来修改定义在state中的公共数据。
格式
分两个格式: 注册的格式,调用的格式
定义格式: 如下
new Vue.store({
// 省略其他...
mutations:{
// 每一项都是一个函数,可以声明两个形参
mutation名1:function(state [, 载荷]) {
},
mutation名2:function(state [, 载荷]) {
},
}
})
每一项都是一个函数,可以声明两个形参:
使用格式
this.$store.commit('mutation名', 实参,给第二个参数)
这里的commit是固定的方法
在store/index.js
中,补充:
export default new Vuex.Store({
// state: 用来保存所有的公共数据
state: {
userInfo: {
name: 'tom',
skills: ['抖音', 'B站', '美团'],
address: '武汉黑马',
logo: 'https://vuejs.org/./images/logo.svg'
// https://www.runoob.com/wp-content/uploads/2016/02/react.png
}
},
// mutations: 用它提供修改数据的方法
// 中文是:变化,异动。
// 数据不应该在组件内部直接修改,必须在组件内调用mutations来修改
mutations: {
setLogo(state, newUrl) {
state.userInfo.logo = newUrl
}
}
}
在组件中,调用
const url = 'http://s02.mifile.cn/assets/static/image/logo-mi2.png'
this.$store.commit('changeUrl', url)
打开调试工具,查看效果
mutations的中文含义是:变异。 它是Vuex中用来修改公共数据的唯一入口。
在定义时:
在调用时:
问:为啥是$store.commit('mutations的名字')
而不是$store.mutations的名字()?
答:Vuex 中的 mutation 非常类似于事件:每个 mutation 都有一个字符串的 事件类型 (type) 和 一个 回调函数 (handler)。这个回调函数就是我们实际进行状态更改的地方,并且它会接受 state 作为第一个参数。
问:数据不可以该在组件内部直接修改吗?
答:不能。虽然语法上不报错,也有响应式的特点。但是不推荐。特别是在严格模式下会报错。若将vue创建 store 的时候传入 strict: true, 开启严格模式,那么任何修改state的操作,只要不经过 mutation的函数,vue就会报错
问:可以传递多个数据吗?
答:参数只能有一个:下面的写法是不对的:
this.$store.commit('setUrl', url, host) // host这个参数将无法被接收到
如果希望传递复杂的数据,第二个参数可以是对象,例如下面的写法
this.$store.commit('setUrl', { url, host} )
问:等价写法 this.$store.comit({type: 'mutations的名字'})
综合使用axios, mutation, state
我们希望在某组件创建成功之后:
组件created钩子函数中:
在app.vue
(或者其他的组件)中,created钩子函数中的代码如下:
created() {
axios({
url: 'https://www.fastmock.site/mock/37d3b9f13a48d528a9339fbed1b81bd5/book/api/books',
method: 'GET'
}).then(res => {
console.log(res)
this.$store.commit('setBooks', res.data.data)
})
}
在src/store/index.js
中,补充对应的数据项 books和操作的方法。
state: {
// 省略其他...
books: [] // 用来保存书
},
mutations: {
// 省略其他...
// 用来设置数据
setBooks(state, books) {
state.books = books
}
}
app.vue
模板中 渲染数据
书目
{{book.name}}, {{book.price}}
总价为:XX元
了解getters的作用; 掌握它的用法;
在state中的数据的基础上,进一步对数据进行加工得到新数据。(与组件中computed一样)
例如:计算总价
new Vuex.store({
state: {
books: [
{
"name": "javasript技术内幕",
"price": 100,
"img": "https://img3m7.ddimg.cn/64/26/29120617-1_u_8.jpg"
},
{
"name": "数学之美",
"price": 44,
"img": "https://img3m2.ddimg.cn/18/30/28538352-1_b_5.jpg"
},
{
"name": "认知天性",
"price": 40,
"img": "https://img3m3.ddimg.cn/74/33/1732997153-3_u_3.jpg"
}
]
}
})
new Vuex.store({
// 省略其他...
getters: {
// state 就是上边定义的公共数据state
getter的名字1: function(state) {
return 要返回的值
}
}
})
state 就是上边定义的公共数据state
在组件中通过:$store.getters.getter的名字
来访问
它的作用是从已有公共数据项中派生出新的数据项,类似于computed
Vuex-state-mutation-getters 小结
vuex维护公共数据,主要有两个动作:
Vuex-actions-发异步请求
上面获取图书信息的方式是:
这种方式有一个问题:代码不好重用
actions介绍
格式
定义格式
new Vuex.store({
// 省略其他...
actions: {
// context对象会自动传入,它与store实例具有相同的方法和属性
action的名字: function(context, 载荷) {
// 1. 发异步请求, 请求数据
// 2. commit调用mutation来修改数据
// context.commit('mutation名', 载荷)
}
}
})
调用格式
在组件中通过this.$store.dispatch('actions的名字', 参数)
来调用action
示例
修改上面例子中的发请求图书的代码,将axios的部分写到action中
// 发ajax请求,从后端获取数据,再来去修改state中的数据
actions: {
getBooks (context) {
// 1. 发异步请求
axios({
url: 'https://www.fastmock.site/mock/37d3b9f13a48d528a9339fbed1b81bd5/book/api/books',
method: 'GET'
}).then(res => {
console.log(res)
// 2. 调用mutation
context.commit('setBooks', res.data.data)
})
}
},
action一般用来发异步请求,数据回来之后,在去调用mutations来保存数据
将ajax请求放在actions中有两个好处:
随着项目越来越大,需要放在vuex中的数据越来越多,整个store/index.js中代码会越来越长,怎么办呢?
拆分模板,把复杂的场景按模块来拆开
export default new Vuex.Store({
// state: 用来保存所有的公共数据
state: {},
getters: {},
mutations: {},
actions: {},
modules: {
模块名1: {
// namespaced为true,则在使用mutations时,就必须要加上模块名
namespaced: true,
state: {},
getters: {},
mutations: {},
actions: {},
modules: {}
},
模块名2: {
// namespaced不写,默认为false,则在使用mutations时,不需要加模块名
state: {},
getters: {},
mutations: {},
actions: {},
modules: {}
}
}
})
也可以更进一步对文件进行拆分。
|--store /
|------- index.js # 引入模块
|------- modules
|-------------- / mod1.js # 模块1
|-------------- / mod2.js # 模块2
$store.commit('mutations名') // namespaced为false
$store.commit('模块名/mutations名') // namespaced为true
使用了modules之后,在访问数据时就要额外添加modules的名字了。
结论: 在使用modules时,建议都给加上namespaced!
vuex-用modules之后代码结构优化
Vuex-辅助函数mapState来使用公共数据
掌握mapState的用法,将state中的变量映射到当前的组件中使用;
当访问某个数据项嵌套太深了,能不能优化一下访问的方式?
用mapState把公共数据(vuex.store) 映射 到本组件内部的计算属性中
// 1. 导入辅助函数mapState,它是在vuex中定义的一个工具函数。
// es6 按需导入 import { mapState } from 'vuex'
import { mapState } from 'vuex'
computed: {
// 说明1: ...对象 是把对象展开,合并到computed
// 说明2: mapState是一个函数
// ['数据项1', '数据项2']
...mapState(['xxx']),
...mapState({'新名字': 'xxx'})
}
this.xxx
{{xxx}}
// 步骤
// 1. 导入辅助函数mapState,它是在vuex中定义的一个工具函数。
// es6 按需导入 import { mapState } from 'vuex'
import { mapState } from 'vuex'
// 2. 在computed中使用 ...mapState(['books'])
// const res = mapState(['books'])
// res的结果是一个对象: { books: function() {}}
// console.log('mapState', res)
export default {
computed: {
c1 () {
return 'c1'
},
// books: function() {}
// ..res: 把res这个对象合并到computed对象中
// ...res
...mapState(['books'])
}
}
掌握mapState对数据重命名的用法。
vuex中的数据与本组件内的数据名相同
...mapState({'新名字': 'xxx'})
this.$store.getters.xxx
this.$store.getters.模块名.xxx
this.$store.commit('mutation名', 参数)
this.$store.commit('模块名/mutation名', 参数)
this.$store.dispatch('action名', 参数)
this.$store.dispatch('模块名/action名', 参数)