这篇文章主要为大家详细介绍了让Vue也可以使用Redux的方法,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随四海网的小编两巴掌来看看吧!
上周末看Vuex源码,突发灵感,为什么都是Vuex啊。
于是蛋疼一下午写了一个插件来帮助Vue可以使用Redux
Gayhub Url
这是一个用于帮助Vue使用Redux管理状态的插件。Redux是一个非常流行的状态管理工具。vue-with-redux为大家提供一个可以在Vue环境下使用Redux的途径。这回带来不同的开发体验。
首先你需要通过如下命令安装vue-with-redux
代码如下:
npm install -save vue-with-redux
运行Demo
代码如下:
git clone https://github.com/ryouaki/vue-with-redux.git
npm install
npm run serve
需要像下面这样改造你的入口文件:
代码如下:
// 有可能是你的entry.js文件
... // 这里是你引入的其它包
import VuexRedux from 'vue-with-redux';
import { makeReduxStore } from 'vue-with-redux';
import reduces from 'YOUR-REDUCERS';
import middlewares from 'REDUX-MIDDLEWARES';
Vue.use(VuexRedux);
let store = makeReduxStore(reduces, [middlewares]);
new Vue({
store,
render: h => h(App)
}).$mount('#app')
下面是一个actionCreate函数:
代码如下:
export function test() {
return {
type: 'TEST'
}
}
export function asyncTest() {
return (dispatch, getState) => {
setTimeout( () => {
console.log('New:', getState());
dispatch({type: 'TEST'});
console.log('Old', getState());
}, 100);
}
}
这是一个reducer的例子:
代码如下:
function reduce (state = { count: 0 }, action) {
switch(action.type) {
case 'TEST':
state.count++;
return state;
default:
return state;
}
}
export default {
reduce
};
Vue的组件例子:
代码如下:
<template>
<div>
<button @click="clickHandler1">Action Object</button>
<button @click="clickHandler2">Sync Action</button>
<button @click="clickHandler3">Async Action</button>
<p>{{reduce.count}}</p>
</div>
</template>
<script>
import { test, asyncTest } from './../actions';
export default {
name: 'HelloWorld',
props: {
msg: String
},
// 你必须在这里预先定义你订阅的Redux中的状态。否则编译模版会报错。
data() {
return {
reduce: {}
}
},
methods: {
clickHandler1() {
this.dispatch({type: 'TEST'});
},
clickHandler2() {
this.dispatch(test());
},
clickHandler3() {
this.dispatch(asyncTest());
},
// 你必须实现一个mapReduxState函数,用于告诉Vue-with-Redux你需要订阅哪些redux中的状态
// [ state ] 参数就是redux状态树的根。
mapReduxState(state) {
return {
reduce: state.reduce
}
},
}
}
</script>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持四海网。
本文来自:http://www.q1010.com/184/5504-0.html
注:关于让Vue也可以使用Redux的方法的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:vue.js
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。