网站首页 > 技术文章 正文
let Vue
class Store{
constructor(options){
this.state = new Vue({ // 强依赖 state 的变化 触发视图的变化
data:options.state
})
this.mutations = options.mutations
this.actions = options.actions
options.getters && this.handleGetters(options.getters)
}
// commit接受type和业务入参到mutations
commit=(type,arg)=>{
console.log(this)
this.mutations[type](this.state,arg)
}
//发送dispatch到action
dispatch(type,arg){
this.actions[type]({
commit:this.commit,
state:this.state
},arg)
}
handleGetters(getters){
this.getters = {};
// 遍历getters所有key
Object.keys(getters).forEach(key=>{
// 为this.getters定义若干属性,这些属性是只读的
// $store.getters.score
Object.defineProperty(this.getters,key,{ //每次获取this.getters 的所有属性时 都会触发get
get:()=>{
return getters[key](this.state)
}
})
})
}
}
function install(_Vue){
Vue = _Vue
Vue.mixin({
beforeCreate() {
if(this.$options.store){
Vue.prototype.$store = this.$options.store
}
},
})
}
export default {Store,install}
使用:
import Vue from "vue";
import Vuex from "./kvuex";
Vue.use(Vuex);
export default new Vuex.Store({
state: { count: 0 },
mutations: {
increment(state, n = 1) {
state.count += n;
}
},
getters: {
score(state) {
return `共扔出:${state.count}`
}
},
actions: {
incrementAsync({ commit }) {
setTimeout(() => {
commit("increment", 2);
}, 1000);
}
}
});
猜你喜欢
- 2024-09-29 Vue实战——vue+router+vuex导航守卫进行身份验证
- 2024-09-29 shopping开源项目用vue+vue-router+vuex实现电商网站基本功能
- 2024-09-29 Vuex状态管理(vuex状态管理几种状态)
- 2024-09-29 vue2视频教程系列第二十七节—vuex中getters和actions的使用
- 2024-09-29 Vuex 学习笔记(vuex视频教学)
- 2024-09-29 Vue 3学习:4. 集成vuex(vue集成js)
- 2024-09-29 Vue组件间通信(vue组件间通信的方法)
- 2024-09-29 vue-admin-template调用action获取用户资料
- 2024-09-29 vuex的实现以及数据流向(vuex单向数据流图)
- 2024-09-29 vue中如何使用vuex的简单案列(vuex怎样使用)
- 最近发表
- 标签列表
-
- cmd/c (57)
- c++中::是什么意思 (57)
- sqlset (59)
- ps可以打开pdf格式吗 (58)
- phprequire_once (61)
- localstorage.removeitem (74)
- routermode (59)
- vector线程安全吗 (70)
- & (66)
- java (73)
- org.redisson (64)
- log.warn (60)
- cannotinstantiatethetype (62)
- js数组插入 (83)
- resttemplateokhttp (59)
- gormwherein (64)
- linux删除一个文件夹 (65)
- mac安装java (72)
- reader.onload (61)
- outofmemoryerror是什么意思 (64)
- flask文件上传 (63)
- eacces (67)
- 查看mysql是否启动 (70)
- java是值传递还是引用传递 (58)
- 无效的列索引 (74)