VueX实现不同组件的数据共享 数据持久化

vuex的使用:
    1、src目录下面新建一个vuex的文件夹

    2、vuex 文件夹里面新建一个store.js

    3、安装vuex  
        cnpm install vuex --save

    4、在刚才创建的store.js引入vue  引入vuex 并且use vuex

        import Vue from 'vue'
        import Vuex from 'vuex'

        Vue.use(Vuex)

    5、定义数据
            /*1.state在vuex中用于存储数据*/
            var state={

                count:1
            }

    6、定义方法   mutations里面放的是方法,方法主要用于改变state里面的数据

        var mutations={

            incCount(){

            ++state.count;
            }
        }

    7、优点类似计算属性   ,  改变state里面的count数据的时候会触发 getters里面的方法 获取新的值 (基本用不到)
        var getters= {     
            computedCount: (state) => {
            return state.count*2
            }
        }
    8、 Action 基本没有用
        Action 类似于 mutation,不同在于:
        Action 提交的是 mutation,而不是直接变更状态。
        Action 可以包含任意异步操作。
        var actions= {
            incMutationsCount(context) {    /*因此你可以调用 context.commit 提交一个 mutation*/   
            context.commit('incCount');    /*执行 mutations 里面的incCount方法 改变state里面的数据*/
            }
        }
    暴露
        const store = new Vuex.Store({
            state,
            mutations,
            getters,
            actions
        })
        export default store;

组建里面使用vuex:
        1.引入 store
             import store from '../vuex/store.js';
        2、注册
             export default{
                data(){
                    return {               
                       msg:'我是一个home组件',
                    value1: null,                
                    }
                },
                store,
                methods:{
                    incCount(){
                      
                    this.$store.commit('incCount');   /*触发 state里面的数据*/
                    }
                }
                }
        3、获取state里面的数据  
            this.$store.state.数据
        4、触发 mutations 改变 state里面的数据
            this.$store.commit('incCount');
        5、触发 actions里面的方法
            this.$store.dispatch('incCount');
        6、{{this.$store.getters.computedCount}}  获取 getters里面方法返回的的数据
示列代码如下

src/components/

<template>
    <!-- 所有的内容要被根节点包含起来 -->
    <div id="home" style="padding:20px;">    
       我是首页组件  -- {{this.$store.state.count}} ----{{this.$store.getters.computedCount}}          
        <button @click="incCount()">增加数量+</button>      
    </div>
</template>
<script>
    //1. 引入store   建议store的名字不要变
    import store from '../vuex/store.js';
    //2.注册
    export default{
        data(){
            return {               
                msg:'我是一个home组件',
                value1: null,             
            }
        },
        store,
        methods:{
            incCount(){
                //改变vuex store里面的数据

                //this.$store.commit('incCount');   /*触发 mutations 改变 state里面的数据*/

                this.$store.dispatch('incMutationsCount');   /*触发 actions里面的方法   */
            }
        }
    }

</script>
<style lang="scss" scoped>    
</style>

<template>    
    <div id="news">    
       我是新闻组件   --{{this.$store.state.count}}       
        <br>
        <button @click="incCount()">增加数量</button>
                <br><br>
                <br><br>
                <ul>
                    <li v-for="item in list">                    
                        {{item.title}}
                    </li>
                </ul>                        
    </div>
</template>
<script>
    //1. 引入store
    import store from '../vuex/store.js';
    export default{
        data(){
            return {               
               msg:'我是一个新闻组件',
               list:[]             
            }
        },
        store,
        methods:{
            incCount(){
                this.$store.commit('incCount');
            },
            requestData(){
                  //请求数据
                    var api='http://www.phonegap100.com/appapi.php?a=getPortalList&catid=20&page=1';
                    this.$http.get(api).then((response)=>{
                        console.log(response);
                        //注意this指向
                        this.list=response.body.result;
                        //数据放在store里面
                        this.$store.commit('addList',response.body.result);
                    },function(err){
                            console.log(err);
                    })
            }
        },mounted(){
            //判断 store里面有没有数据
            var listData=this.$store.state.list;
            console.log(listData.length);
            if(listData.length>0){
                    this.list=listData;
            }else{
                 this.requestData();
            }
        }
    }
</script>

<style lang="scss" scoped>   
    .list{
        li{
            height:3.4rem;
            line-height:3.4rem;
            boder-bottom:1px solid #eee;
            font-size:1.6rem;
            a{
                color:#666;               
            }
        }
    }
</style>
<template>    
    <div id="news">    
       我是用户组件        
    </div>
</template>
<script>
    export default{
        data(){
            return {               
               msg:'我是一个新闻组件'  ,                  
            }
        }       
    }

</script>
<style lang="scss" scoped>
</style>

src/router/router.js

import Vue from 'vue';

//配置路由
import VueRouter from 'vue-router';
Vue.use(VueRouter);

//1.创建组件
import Home from '../components/Home.vue';
import News from '../components/News.vue';
import User from '../components/User.vue';

//2.配置路由   注意:名字

const routes = [
    { path: '/home', component: Home },
    { path: '/news', component: News, name: 'news' },
    { path: '/user', component: User },
    { path: '*', redirect: '/home' }   /*默认跳转路由*/
]

//3.实例化VueRouter  注意:名字

const router = new VueRouter({
    mode: 'history',   /*hash模式改为history*/
    routes // (缩写)相当于 routes: routes
})
//5 <router-view></router-view> 放在 App.vue
export default router;

src/vuex/store.js

import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex);
/*1.state在vuex中用于存储数据*/
var state={
    count:1,
    list:[]
}

/*2.mutations里面放的是方法,方法主要用于改变state里面的数据
*/
var mutations={
    incCount(){
        ++state.count;
    },
    addList(state,data){

        state.list = data;
    }
}
/*3、优点类似计算属性   ,  改变state里面的count数据的时候会触发 getters里面的方法 获取新的值 (基本用不到)*/
var getters= {
   
    computedCount: (state) => {
        return state.count*2
    }
}

/*
4、 基本没有用

Action 类似于 mutation,不同在于:

Action 提交的是 mutation,而不是直接变更状态。
Action 可以包含任意异步操作。
*/
var actions= {
    incMutationsCount(context) {    /*因此你可以调用 context.commit 提交一个 mutation*/
            
        context.commit('incCount');    /*执行 mutations 里面的incCount方法 改变state里面的数据*/
    }
}

//vuex  实例化 Vuex.store   注意暴露
const store = new Vuex.Store({
    state,
    mutations,
    getters,
    actions
})
export default store;

App.vue

<template>
  <div id="app"> 
    <header class="header">
      <router-link to="/home">首页</router-link>
      <router-link to="/news">新闻</router-link>
       <router-link to="/user">用户</router-link>
    </header>
    <hr>
    <router-view></router-view>
  </div>
</template>
<script>
   export default {     
      data () { 
        return {
         
         msg:'你好vue'
        }
      }
     
    }
</script>
<style lang="scss">
  .header{
    height:4.4rem;
    background:#000;
    color:#fff;
    line-height:4.4rem;
    text-align:center;
    a{
      color:#fff;
      padding:0 2rem
    }
  }
</style>

mian.js

import Vue from 'vue';
import App from './App.vue';

//引入公共的scss   注意:创建项目的时候必须用scss
import './assets/css/basic.scss';   
//请求数据

import VueResource from 'vue-resource';

Vue.use(VueResource);
//配置路由
import router from './router/router.js';

//4、挂载路由

new Vue({
  el: '#app',
  router,
  render: h => h(App)
})

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,684评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,143评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,214评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,788评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,796评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,665评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,027评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,679评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,346评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,664评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,766评论 1 331
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,412评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,015评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,974评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,073评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,501评论 2 343