文档:http://vuex.vuejs.org/zh-cn/modules.html
这个modules是用来干什么的?
这样一个框架。
里,我们把user_name和新闻是糅合在一起的,如果我们这个项目的多人协作开发,这样就不是很方便。 所以modules
就起到了这样一个作用。
我们来演示一下怎么使用这个modules
1.项目结构(我们参考了官方的http://vuex.vuejs.org/zh-cn/structure.html) 把用户和新闻模块分开。
export default{ state:{ user_name:"" }, mutations:{ showUserName(state){ alert(state.user_name); } },}
3.NewsModules.js:
export default{ state:{ newslist:[], newsdetail:{} }, mutations:{ setAgree(state,agreeNum){ state.newsdetail.agree = agreeNum; } }, actions:{ agree(context,newsid){ // 进行请求,获取点赞后的agree字段属性值 Vue.http.post("http://localhost/agree.php",{newsid:newsid},{emulateJSON:true}).then(function (res) { // 处理业务 // 调用上面setAgree方法更新点赞数 context.commit("setAgree",res.body.agree); },function(){}) } }, getters:{ getNews(state){ return state.newslist.filter(function (news) { return !news.isdeleted; }) } }}
4.这2步做好之后,我们已经把用户和新闻分离了,分离之后怎么引入呢?
import UserModule from "./../store/modules/UserModule";import NewsModule from "./../store/modules/NewsModule";
const vuex_store = new Vuex.Store({ modules:{ users:UserModule, news:NewsModule }})
这个时候是否大功告成呢,肯定不是
:
<script> export default{ created(){ if (this.$store.state.news.newslist.length == 0){ // 请求服务器获取数据 this.$http.get("http://localhost/news.php").then(function (res) { this.$store.state.news.newslist = res.body; },function (res) { // 请求失败处理 }) } } }</script>
this.$store.state.news.newslist
,news
就是前面定义的module名。
user-name.vue
<script> export default{ props:["placeholder"], data:function () { return { username:"" } }, methods:{ userNameChange(){ //this.$emit("childChange","username",this.username) this.$store.state.users.user_name = this.username; } } }</script>
this.$store.state.user_nam
修改为:this.$store.state.users.user_name
。
至此,聪明的你应该已经发现:之前代码所有用到state
的地方,都应该加上module名称来访问。
其他注意点
// 进行请求,获取点赞后的agree字段属性值Vue.http.post("http://localhost/agree.php",{newsid:newsid},{emulateJSON:true}).then(function (res) {// 处理业务// 调用上面setAgree方法更新点赞数context.commit("setAgree",res.body.agree);},function(){})
NewsModule.js中,我们是通过Vue.http.post()
来获取服务器数据的,可能会找不到Vue
,所以在这个文件头部,我们再次引入一下:
import Vue from "vue";