浅谈super-vuex使用体验
vuex与super-vuex
是一套用于简化vuex的数据架构。
适用场景
在繁重的中后台项目中,引入vuex的作用如下:
- 全局数据共享,组件数据逻辑解耦
- 数据业务接口分离
- 数据模块化管理,利于多人协作
super-vuex在这三种需求下都是和原生vuex的功能相同,在vuex原有功能上将mutation和action的定义和传导机制改良为函数的写法,在简易数组改动逻辑的使用上提供push、pop、shift、unshift、splice的方法,可以在与、组件中自动地完成mutation,以及数据引用的路径化,你可以通过load.allow去取到load模块下的allow属性。
使用体验
下面通过简单的demo比较下原生vuex和super-vuex使用细节上的不同。
一、状态模块化
由于使用单一状态树,应用的所有状态会集中到一个比较大的对象。当应用变得非常复杂时,store 对象就有可能变得相当臃肿。
vuex:
const modulea = { state: { ... }, mutations: { ... }, actions: { ... }, getters: { ... } } const moduleb = { state: { ... }, mutations: { ... }, actions: { ... } } const store = new vuex.store({ modules: { a: modulea, b: moduleb } }) store.state.a // -> modulea 的状态 store.state.b // -> moduleb 的状态
super-vue
自动将mutation逻辑执行,因此异步逻辑写在commit中即可,相比之下节省了代码量
import { childvuex } from "super-vuex"; const child = new childvuex('...'); child.value = { ... }; child.setcommit = {...}; const main = new supervuex(); main.setmodule(child); export default main.init();
路径式获取子模块数据
数据路径,在之后的所有方法中,数据路径至关重要,它是一个数据的直观路径字符串,也就是上面[childvuex].value 数据定义的数据路径。
'load.allow'
可以取到load模块的allow属性
二、操作方法
super-vuex的操作方法上告别了以往同步数组操作的繁杂过程,比如在以往的vuex模式中实现一个对数组的操作是效率偏低的,先在mutation中定义方法操作,后在action中commit或是在组件中commit,super-vuex很好的解决了这个问题,提供了一系列基础的数组操作方法让你操作数组非常简单。
vuex:
// 提交一个commit store.commit({ type: 'increment', amount: 10 }) mutations: { // push increment (state, n) { state.arr = = [...state.arr, n] } // pop poparr(state) { state.arr = arr.pop() } // shift shiftarr(state) { state.arr.shift() } // unshift unshift(state) { state.arr.unshift('students', { name: 'huaping1', age: 302 }) } // deletestudent deletestudent(state) { state.arr.splice('students', 0, 1); }, } ...
super-vuex:
super-vuex在commit这层提供了一系列的操作api,提高了数据传递的效率
child.setcommit('increment', (state, n) => { state.count += n; }); changename() { this.$store.user.commit('name', 'someone'); }, changeallow() { this.$store.user.commit('load.allow', false); }, pushstudent() { this.$store.user.push('students', { name: 'huaping', age: 300 }); }, pushsubs() { this.$store.sub.push('subs', 10); }, popsubs() { this.$store.sub.pop('subs'); }, unshiftstudent() { this.$store.user.unshift('students', { name: 'huaping1', age: 302 }); }, shiftstudent() { this.$store.user.shift('students') }, deletestudent() { this.$store.user.splice('students', 0, 1); }, gets() { his.$store.user.dispatch('load.data'); }
方法列表function
- get(name):获取一个getter属性;例:store.sub.get('subs')
- commit(name, data):提交处理一个属性;例:store.user.commit('age', data)
- push(name, ...data):提交一个数据的push行为
- pop(name):提交一个数据的pop行为
- unshift(name, ...data):提交一个数据的unshift行为
- shift(name): 提交一个数据的shift行为
- splice(name, arguments):用法同array.prototype.splice
- dispatch(name, data):个async/await型的调用函数。与vuex中的dispatch一致,用于出发setaction定义的行为
不仅如此,super-vuex还提供自定义模式可以覆盖掉默认给你提供的api,
child.setpushcommit(path, callback<(state, data)>); child.setunshiftcommit(path, callback<(state, data)>); child.setpopcommit(path, callback<(state)>); child.setshiftcommit(path, callback<(state)>); // 注意splice使用方法,在`data`中是一个数组 child.setsplicecommit(path, callback<(state, data)>);
- [childvuex].setpushcommit 数组的push操作行为
- [childvuex].setunshiftcommit 数组的unshift操作行为
- [childvuex].setsplicecommit 数组的splice操作行为
- [childvuex].setpopcommit 数组的pop操作行为
- [childvuex].setshiftcommit 数组的shift操作行为
三、getter
在组件内使用store中的数据,vuex通常是把getter放入computed中,使组件产生数据响应。
vuex:
const store = new vuex.store({ state: { todos: [ { id: 1, text: '...', done: true }, { id: 2, text: '...', done: false } ] }, getters: { donetodos: state => { return state.todos.filter(todo => todo.done) } } }) // in component computed: { // 使用对象展开运算符将 getter 混入 computed 对象中 ...mapgetters([ 'donetodoscount', 'anothergetter', // ... ]) }
super-vuex:
this.store.donetodos.get('todos')
非常简约地完成getter,响应式getter
当然想使用原生的getter也是ok的,辅助方法adjfunction(对childvuex自动生成的属性进行覆盖或自定义)
[childvuex].setgetter(path, cb)
自定义或覆盖模块中相应getter的属性,相当于原生vuex的getter属性。
覆盖原有的getter
child.setgetter('load.total', state => { return state.load.total + 100; }); /* 调用$store.user.get('load.total') * 返回 200 */
@cevio
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: linux下查看CPU、内存、磁盘信息
推荐阅读
-
浅谈mysqldump使用方法(MySQL数据库的备份与恢复)
-
浅谈python中set使用
-
新浪微博激活码是什么? 新浪微博会员体验卡的使用教程
-
浅谈在Java中使用Callable、Future进行并行编程
-
深度剖析6个实例 告诉你如何使用H5/CSS3动画效果快速提升用户体验
-
浅谈Android Studio 3.0 工具新特性的使用 Android Profiler 、Device File Explorer
-
浅谈vue.use()方法从源码到使用
-
浅谈Java BitSet使用场景和代码示例
-
浅谈Android中使用异步线程更新UI视图的几种方法
-
浅谈JavaScript中的apply/call/bind和this的使用