一站式做网站公司,站长工具国产,互动网络平台,厦门云端企业网站建设零、文章目录
Vue2基础十、Vuex
1、vuex概述
#xff08;1#xff09;vuex是什么
vuex 是一个 vue 的 状态管理工具#xff0c;状态就是数据。大白话#xff1a;vuex 是一个插件#xff0c;可以帮我们管理 vue 通用的数据 (多组件共享的数据) 例如#xff1a;购物车数…零、文章目录
Vue2基础十、Vuex
1、vuex概述
1vuex是什么
vuex 是一个 vue 的 状态管理工具状态就是数据。大白话vuex 是一个插件可以帮我们管理 vue 通用的数据 (多组件共享的数据) 例如购物车数据 个人信息数据
2场景
① 某个状态 在 很多个组件 来使用 (个人信息)② 多个组件 共同维护 一份数据 (购物车) 3优势
① 共同维护一份数据数据集中化管理② 响应式变化③ 操作简洁 (vuex提供了一些辅助函数)
4注意点
不是所有的场景都适用于vuex只有在必要的时候才使用vuex使用了vuex之后会附加更多的框架中的概念进来增加了项目的复杂度 数据的操作更便捷数据的流动更清晰
2、构建 vuex环境
目标基于脚手架创建项目构建 vuex 多组件数据共享环境 效果是三个组件, 共享一份数据: 任意一个组件都可以修改数据三个组件的数据是同步的
1创建项目
vue create vuex-demo2创建组件目录如下
|-components
|--Son1.vue
|--Son2.vue
|-App.vueApp.vue引入 Son1 和 Son2 子组件
templatediv idapph1根组件/h1input typetextSon1/Son1hrSon2/Son2/div
/templatescript
import Son1 from ./components/Son1.vue
import Son2 from ./components/Son2.vueexport default {name: app,data: function () {return {}},components: {Son1,Son2}
}
/scriptstyle
#app {width: 600px;margin: 20px auto;border: 3px solid #ccc;border-radius: 3px;padding: 10px;
}
/stylemain.js
import Vue from vue
import App from ./App.vueVue.config.productionTip falsenew Vue({render: h h(App)
}).$mount(#app)components/Son1.vue
templatediv classboxh2Son1 子组件/h2从vuex中获取的值: label/labelbrbutton值 1/button/div
/templatescript
export default {name: Son1Com
}
/scriptstyle langcss scoped
.box{border: 3px solid #ccc;width: 400px;padding: 10px;margin: 20px;
}
h2 {margin-top: 10px;
}
/style
components/Son2.vue
templatediv classboxh2Son2 子组件/h2从vuex中获取的值:label/labelbr /button值 - 1/button/div
/templatescript
export default {name: Son2Com
}
/scriptstyle langcss scoped
.box {border: 3px solid #ccc;width: 400px;padding: 10px;margin: 20px;
}
h2 {margin-top: 10px;
}
/style3创建Vuex数据仓库 **安装 vuex**安装vuex与vue-router类似vuex是一个独立存在的插件如果脚手架初始化没有选 vuex就需要额外安装。
yarn add vuex3 或者 npm i vuex3**新建 store/index.js 专门存放 vuex**为了维护项目目录的整洁在src目录下新建一个store目录其下放置一个index.js文件。 (和 router/index.js 类似) **Vue.use(Vuex)创建仓库 new Vuex.Store()**在store/index.js中使用Vuex
// 导入 vue
import Vue from vue
// 导入 vuex
import Vuex from vuex
// vuex也是vue的插件, 需要use一下, 进行插件的安装初始化
Vue.use(Vuex)// 创建仓库 store
const store new Vuex.Store()// 导出仓库
export default store在 main.js 中导入挂载到 Vue 实例上
import Vue from vue
import App from ./App.vue
import store from ./storeVue.config.productionTip falsenew Vue({render: h h(App),store
}).$mount(#app)至此就成功创建了一个 空仓库!!
测试打印Vuex在App.vue打印Vuex
created(){console.log(this.$store)
}3、核心概念-state状态
状态即数据明确如何给仓库 提供 数据如何 使用 仓库的数据
1提供数据
State 提供唯一的公共数据源所有共享的数据都要统一放到 Store 中的 State 中存储。打开项目中的store.js文件在state对象中可以添加我们要共享的数据。
// 创建仓库 store
const store new Vuex.Store({// state 状态, 即数据, 类似于vue组件中的data,// 区别// 1.data 是组件自己的数据, // 2.state 中的数据整个vue项目的组件都能访问到state: {count: 101}
})2使用数据-通过store直接访问
获取 store1.Vue模板中获取 this.$store2.js文件中获取 import 导入 store模板中 {{ $store.state.xxx }}
组件逻辑中 this.$store.state.xxx
JS模块中 store.state.xxx模板中使用组件中可以使用 $store 获取到vuex中的store对象实例可通过state属性获取count 如下
h1state的数据 - {{ $store.state.count }}/h1**组件逻辑中使用**将state属性定义在计算属性中 https://vuex.vuejs.org/zh/guide/state.html
h1state的数据 - {{ count }}/h1// 把state中数据定义在组件内的计算属性中computed: {count () {return this.$store.state.count}}js文件中使用
//main.jsimport store from /storeconsole.log(store.state.count)3使用数据-辅助函数mapState
每次一个个的提供计算属性太麻烦了我们可以通过mapState辅助函数把 store中的数据 自动 映射到 组件的计算属性中 import { mapState } from vuexcomputed: {...mapState([count])
}上面代码等价于
count () {return this.$store.state.count
}直接在代码中调用即可 div state的数据{{ count }}/div4、核心概念-mutations
1单向数据流
vuex 同样遵循单向数据流组件中不能直接修改仓库的数据 Son1.vuethis.$store.state.count (错误写法)但是vue默认不会监测监测需要成本
button clickhandleAdd值 1/buttonmethods:{handleAdd (n) {// 错误代码(vue默认不会监测监测需要成本)this.$store.state.count// console.log(this.$store.state.count) },
}2开启严格模式
通过 strict: true 可以开启严格模式开启严格模式后直接修改state中的值会报错state数据的修改只能通过mutations并且mutations必须是同步的 3mutations操作流程
定义 mutations 对象对象中存放修改 state 的方法
const store new Vuex.Store({state: {count: 0},// 定义mutationsmutations: {// 第一个参数是当前store的state属性addCount (state) {state.count 1}}
})组件中提交调用 mutations
this.$store.commit(addCount)4mutations带参数
看下面这个案例每次点击不同的按钮加的值都不同每次都要定义不同的mutations处理吗 提交 mutation 是可以传递参数的 this.$store.commit( xxx, 参数 ) 带参数的mutations操作流程如下 提供带参数的mutation函数 mutations: {...addCount (state, count) {state.count count}
},页面中提交调用 mutation handle ( ) {this.$store.commit(addCount, 10)
}提交的参数只能是一个, 如果有多个参数要传, 可以传递一个对象 this.$store.commit(addCount, {count: 10,...
})5案例-减法功能 Son2.vue button clicksubCount(1)值 - 1/buttonbutton clicksubCount(5)值 - 5/buttonbutton clicksubCount(10)值 - 10/buttonexport default {methods:{subCount (n) { this.$store.commit(addCount, n)},}}store/index.js
mutations:{subCount (state, n) {state.count - n},
}6案例-双向绑定 App.vue
input :valuecount inputhandleInput typetextexport default {methods: {handleInput (e) {// 1. 实时获取输入框的值const num e.target.value// 2. 提交mutation调用mutation函数this.$store.commit(changeCount, num)}}
}store/index.js
mutations: { changeCount (state, newCount) {state.count newCount}
},7辅助函数mapMutations
mapMutations把mutations中的方法映射到methods中
import { mapMutations } from vuex
methods: {...mapMutations([addCount])
}上面代码等价于
methods: {// commit(方法名, 载荷参数)addCount () {this.$store.commit(addCount)}}通过this.addCount调用
button clickaddCount值1/button注意 Vuex中mutations中要求不能写异步代码如果有异步的ajax请求应该放置在actions中
5、核心概念-actions
1actions概念
state存放数据mutations同步更新数据 (便于监测数据的变化记录调试)actions异步操作 2actions操作流程 提供action 方法
actions: {setAsyncCount (context, num) {// 一秒后, 给一个数, 去修改 numsetTimeout(() {context.commit(changeCount, num)}, 1000)}
},页面中 dispatch 调用
this.$store.dispatch(setAsyncCount, 200)3辅助函数mapActions
mapActions 是把位于 actions中的方法映射到组件methods中
import { mapActions } from vuex
methods: {...mapActions([changeCountAction])
}上面代码等价于
methods: {changeCountAction (n) {this.$store.dispatch(changeCountAction, n)},
}通过 this.方法就可以调用
button clickchangeCountAction(200)异步/button6、核心概念-getters
1getters概念
除了state之外有时我们还需要从state中派生出一些状态这些状态是依赖state的此时会用到getters
2getters操作流程
例如state中定义了list为 1-10 的数组组件中需要显示所有大于5的数据
state: {list: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
}定义 getters getters: {// (1) getters函数的第一个参数是 state// (2) getters函数必须要有返回值filterList: state state.list.filter(item item 5)}通过 store 访问 getters
{{ $store.getters.filterList }}3辅助函数mapGetters
mapActions 是把位于 getters中的属性映射到组件computed中
computed: {...mapGetters([filterList])
}上面代码等价于
computed: {filterList(){return $store.getters.filterList;}
}直接在代码中就可以使用
{{ filterList }}7、核心概念-module进阶
1module概念
由于 vuex 使用单一状态树应用的所有状态会集中到一个比较大的对象。当应用变得非常复杂时store 对象就有可能变得相当臃肿。由此又有了Vuex的模块化。 2模块拆分 定义两个模块 user 和 setting modules/user.jsuser中管理用户的信息状态 userInfo
const state {userInfo: {name: zs,age: 18}
}const mutations {}const actions {}const getters {}export default {namespaced: true,state,mutations,actions,getters
}
modules/setting.jssetting中管理项目应用的 主题色 theme描述 desc
const state {theme: darkdesc: 描述真呀真不错
}const mutations {}const actions {}const getters {}export default {namespaced: true,state,mutations,actions,getters
}在store/index.js文件中的modules配置项中注册这两个模块
import user from ./modules/user
import setting from ./modules/settingconst store new Vuex.Store({modules:{user,setting}
})3使用模块state数据
尽管已经分模块了但其实子模块的状态还是会挂到根级别的 state 中属性名就是模块名 使用模块中的数据 通过模块名访问$store.state.模块名.xxx 通过 mapState 映射 默认根级别的映射mapState([ xxx ]) 子模块的映射 mapState(模块名, [xxx]) - 需要开启命名空间 namespaced:true对应模块文件中开启 export default {namespaced: true,state,mutations,actions,getters
}代码演示 $store直接访问 $store.state.user.userInfo.namemapState辅助函数访问 ...mapState(user, [userInfo]),
...mapState(setting, [theme, desc]),4使用模块getters数据 使用模块getters数据 通过模块名访问$store.getters[模块名/xxx ] 通过 mapGetters 映射 默认根级别的映射mapGetters([ xxx ])子模块的映射mapGetters(模块名, [xxx]) - 需要开启命名空间 代码实现 定义模块modules/user.js const getters {// 分模块后state指代子模块的stateUpperCaseName (state) {return state.userInfo.name.toUpperCase()}
}Son1.vue 通过模块名访问 div{{ $store.getters[user/UpperCaseName] }}/divSon2.vue 通过 mapGetters 映射 computed:{...mapGetters(user, [UpperCaseName])
}5使用模块mutations方法 注意默认模块中的 mutation 和 actions 会被挂载到全局需要开启命名空间才会挂载到子模块。 使用模块mutations方法 通过 store 调用$store.commit(模块名/xxx , 额外参数) 通过 mapMutations 映射 默认根级别的映射mapMutations([ xxx ])子模块的映射mapMutations(模块名, [xxx]) - 需要开启命名空间 代码实现 定义模块modules/user.js const mutations {setUser (state, newUserInfo) {state.userInfo newUserInfo}
}定义模块modules/setting.js const mutations {setTheme (state, newTheme) {state.theme newTheme}
}Son1.vue通过 store 调用 button clickupdateUser更新个人信息/button
button clickupdateTheme更新主题色/buttonexport default {methods: {updateUser () {// $store.commit(模块名/mutation名, 额外传参)this.$store.commit(user/setUser, {name: xiaowang,age: 25})}, updateTheme () {this.$store.commit(setting/setTheme, pink)}}
}Son2.vue通过 mapMutations 映射 button clicksetUser({ name: xiaoli, age: 80 })更新个人信息/button
button clicksetTheme(skyblue)更新主题/buttonmethods:{
// 分模块的映射
...mapMutations(setting, [setTheme]),
...mapMutations(user, [setUser]),
}6使用模块actions方法 注意默认模块中的 mutation 和 actions 会被挂载到全局需要开启命名空间才会挂载到子模块。 使用模块actions方法 通过 store 调用$store.dispatch(模块名/xxx , 额外参数)通过 mapActions 映射 默认根级别的映射mapActions([ xxx ])子模块的映射mapActions(模块名, [xxx]) - 需要开启命名空间 代码实现 modules/user.js const actions {setUserSecond (context, newUserInfo) {// 将异步在action中进行封装setTimeout(() {// 调用mutation context上下文默认提交的就是自己模块的action和mutationcontext.commit(setUser, newUserInfo)}, 1000)}
}Son1.vue 通过 store 调用 button clickupdateUser2一秒后更新信息/buttonmethods:{updateUser2 () {// 调用action dispatchthis.$store.dispatch(user/setUserSecond, {name: xiaohong,age: 28})},
}Son2.vue通过 mapActions 映射 button clicksetUserSecond({ name: xiaoli, age: 80 })一秒后更新信息/buttonmethods:{...mapActions(user, [setUserSecond])
}7小结 直接使用 state -- $store.state.模块名.数据项名 getters -- $store.getters[‘模块名/属性名’] mutations -- $store.commit(‘模块名/方法名’, 其他参数) actions -- $store.dispatch(‘模块名/方法名’, 其他参数) 借助辅助方法使用 import { mapXxxx, mapXxx } from ‘vuex’ …mapState、…mapGetters放computed中 …mapMutations、…mapActions放methods中 …mapXxxx(‘模块名’, [‘数据项|方法’]) …mapXxxx(‘模块名’, { 新的名字: 原来的名字 })
8、综合案例-购物车
1功能模块分析
① 请求动态渲染购物车数据存 vuex② 数字框控件 修改数据③ 动态计算 总价和总数量 2脚手架新建项目 注意勾选vuex
vue create vue-cart-demoApp.vue
templatediv classapp-container!-- Header 区域 --cart-header/cart-header!-- 商品 Item 项组件 --cart-item/cart-itemcart-item/cart-itemcart-item/cart-item!-- Foote 区域 --cart-footer/cart-footer/div
/templatescript
import CartHeader from /components/cart-header.vue
import CartFooter from /components/cart-footer.vue
import CartItem from /components/cart-item.vueexport default {name: App,components: {CartHeader,CartFooter,CartItem}
}
/scriptstyle langless scoped
.app-container {padding: 50px 0;font-size: 14px;
}
/stylemain.js
import Vue from vue
import App from ./App.vue
import store from ./storeVue.config.productionTip falsenew Vue({store,render: h h(App)
}).$mount(#app)store/index.js
import Vue from vue
import Vuex from vuexVue.use(Vuex)export default new Vuex.Store({state: {},getters: {},mutations: {},actions: {},modules: {}
})components/cart-header.vue
templatediv classheader-container购物车案例/div
/templatescript
export default {name: CartHeader
}
/scriptstyle langless scoped
.header-container {height: 50px;line-height: 50px;font-size: 16px;background-color: #42b983;text-align: center;color: white;position: fixed;top: 0;left: 0;width: 100%;z-index: 999;
}
/stylecomponents/cart-footer.vue
templatediv classfooter-container!-- 中间的合计 --divspan共 xxx 件商品合计/spanspan classpricexxx/span/div!-- 右侧结算按钮 --button classbtn btn-success btn-settle结算/button/div
/templatescript
export default {name: CartFooter
}
/scriptstyle langless scoped
.footer-container {background-color: white;height: 50px;border-top: 1px solid #f8f8f8;display: flex;justify-content: flex-end;align-items: center;padding: 0 10px;position: fixed;bottom: 0;left: 0;width: 100%;z-index: 999;
}.price {color: red;font-size: 13px;font-weight: bold;margin-right: 10px;
}.btn-settle {height: 30px;min-width: 80px;margin-right: 20px;border-radius: 20px;background: #42b983;border: none;color: white;
}
/stylecomponents/cart-item.vue
templatediv classgoods-container!-- 左侧图片区域 --div classleftimg srchttps://bluecusliyoupicrep.oss-cn-hangzhou.aliyuncs.com/202307271039546.png classavatar alt/div!-- 右侧商品区域 --div classright!-- 标题 --div classtitle低帮城市休闲户外鞋天然牛皮COOLMAX纤维/divdiv classinfo!-- 单价 --span classprice128/spandiv classbtns!-- 按钮区域 --button classbtn btn-light-/buttonspan classcount1/spanbutton classbtn btn-light/button/div/div/div/div
/templatescript
export default {name: CartItem,methods: {}
}
/scriptstyle langless scoped
.goods-container {display: flex;padding: 10px; .goods-container {border-top: 1px solid #f8f8f8;}.left {.avatar {width: 100px;height: 100px;}margin-right: 10px;}.right {display: flex;flex-direction: column;justify-content: space-between;flex: 1;.title {font-weight: bold;}.info {display: flex;justify-content: space-between;align-items: center;.price {color: red;font-weight: bold;}.btns {.count {display: inline-block;width: 30px;text-align: center;}}}}
}.custom-control-label::before,
.custom-control-label::after {top: 3.6rem;
}
/style3构建 cart 购物车模块
新建 store/modules/cart.js
export default {namespaced: true,state () {return {list: []}},
}挂载到 vuex 仓库上 store/index.js
import Vue from vue
import Vuex from vuex
import cart from ./modules/cartVue.use(Vuex)export default new Vuex.Store({modules: {cart}
})export default store4准备后端接口服务
安装全局工具 json-server 全局工具仅需要安装一次官网地址https://www.npmjs.com/package/json-server
npm i json-server -g代码根目录新建一个 db 目录在db目录创建文件index.json
{cart: [{id: 100001,name: 低帮城市休闲户外鞋天然牛皮COOLMAX纤维,price: 128,count: 5,thumb: https://bluecusliyoupicrep.oss-cn-hangzhou.aliyuncs.com/202307271039546.png},{id: 100002,name: 网易味央黑猪猪肘330g*1袋,price: 39,count: 10,thumb: https://bluecusliyoupicrep.oss-cn-hangzhou.aliyuncs.com/202307271039546.png},{id: 100003,name: KENROLL男女简洁多彩一片式室外拖,price: 128,count: 3,thumb: https://bluecusliyoupicrep.oss-cn-hangzhou.aliyuncs.com/202307271039546.png},{id: 100004,name: 云音乐定制IN系列intar民谣木吉他,price: 589,count: 1,thumb: https://bluecusliyoupicrep.oss-cn-hangzhou.aliyuncs.com/202307271039546.png}],friends: [{id: 1,name: zs,age: 18},{id: 2,name: ls,age: 19},{id: 3,name: ww,age: 20}]
}进入 db 目录执行命令启动后端接口服务 (使用–watch 参数 可以实时监听 json 文件的修改)
json-server --watch index.json访问接口测试 http://localhost:3000/cart
5请求动态渲染数据 安装 axios
yarn add axios准备actions 和 mutationsstore/modules/cart.js
import axios from axiosexport default {namespaced: true,state () {return {list: []}},mutations: {updateList (state, payload) {state.list payload}},actions: {async getList (ctx) {const res await axios.get(http://localhost:3000/cart)ctx.commit(updateList, res.data)}}
}调用 action, 获取数据App.vue
import { mapState } from vuexexport default {name: App,components: {CartHeader,CartFooter,CartItem},created () {this.$store.dispatch(cart/getList)},computed: {...mapState(cart, [list])}
}动态渲染App.vue
!-- 商品 Item 项组件 --
cart-item v-foritem in list :keyitem.id :itemitem/cart-itemcomponents/cart-item.vue
templatediv classgoods-container!-- 左侧图片区域 --div classleftimg :srcitem.thumb classavatar alt/div!-- 右侧商品区域 --div classright!-- 标题 --div classtitle{{item.name}}/divdiv classinfo!-- 单价 --span classprice{{item.price}}/spandiv classbtns!-- 按钮区域 --button classbtn btn-light-/buttonspan classcount{{item.count}}/spanbutton classbtn btn-light/button/div/div/div/div
/templatescript
export default {name: CartItem,props: {item: Object},methods: {}
}
/script6修改数量 注册点击事件components/cart-item.vue
!-- 按钮区域 --
button classbtn btn-light clickonBtnClick(-1)-/button
span classcount{{item.count}}/span
button classbtn btn-light clickonBtnClick(1)/button页面中dispatch actioncomponents/cart-item.vue
onBtnClick (step) {const newCount this.item.count stepif (newCount 1) return// 发送修改数量请求this.$store.dispatch(cart/updateCount, {id: this.item.id,count: newCount})
}提供action函数store/modules/cart.js
async updateCount (ctx, payload) {await axios.patch(http://localhost:3000/cart/ payload.id, {count: payload.count})ctx.commit(updateCount, payload)
}提供mutation函数store/modules/cart.js
mutations: {...,updateCount (state, payload) {const goods state.list.find((item) item.id payload.id)goods.count payload.count}
},7底部总价展示 提供 gettersstore/modules/cart.js
getters: {total(state) {return state.list.reduce((p, c) p c.count, 0);},totalPrice (state) {return state.list.reduce((p, c) p c.count * c.price, 0);},
},动态渲染components/cart-footer.vue
templatediv classfooter-container!-- 中间的合计 --divspan共 {{total}} 件商品合计/spanspan classprice{{totalPrice}}/span/div!-- 右侧结算按钮 --button classbtn btn-success btn-settle结算/button/div
/templatescript
import { mapGetters } from vuex
export default {name: CartFooter,computed: {...mapGetters(cart, [total, totalPrice])}
}
/script