溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Vuex如何實(shí)現(xiàn)計(jì)數(shù)器

發(fā)布時(shí)間:2021-06-26 13:37:55 來源:億速云 閱讀:171 作者:小新 欄目:web開發(fā)

這篇文章將為大家詳細(xì)講解有關(guān)Vuex如何實(shí)現(xiàn)計(jì)數(shù)器,小編覺得挺實(shí)用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

從安裝到啟動初始頁面的過程都直接跳過。注意安裝時(shí)選擇需要路由。

首先,src目錄下新建store目錄及相應(yīng)文件,結(jié)構(gòu)如下:

Vuex如何實(shí)現(xiàn)計(jì)數(shù)器

index.js文件內(nèi)容:

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

Vue.use(Vuex);  //務(wù)必在new Vuex.Store之前use一下

export default new Vuex.Store({
 state:{
  count:0    //計(jì)數(shù)器的count
 },
 mutations:{
  increment(state){
   state.count++
  }
 }
})

src下的main.js里注冊store

new Vue({
 el: '#app',
 router,
 store,    //注冊store
 components: { App },
 template: '<App/>'
});

components文件夾內(nèi)新建Num.vue組件,內(nèi)容如下

<template>
 <div>
  <input type="button" value="+" @click="incr" />
  <input type="text" id="input" v-model="count"/>
  <input type="button" value="-"/>
  <br/>
  <router-link to="/list">列表demo</router-link>
 </div>
</template>

<script>
 import store from '../store'
 export default {

  computed:{
   count:{
    get:function () {
     return store.state.count
    },
    set:function (val) {
     store.state.count = val
    }
   }
  },

  methods:{
   incr(){
    // store.commit("increment")
    store.commit("increment")  //觸發(fā)修改
   }
  }
 }
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>

</style>

router文件夾內(nèi)配置路由:

import Vue from 'vue'
import Router from 'vue-router'
import Num from '../components/Num'
import List from '../components/List'

Vue.use(Router)

export default new Router({
 routes: [
  {
   path:'/num',
   component:Num
  },

  {
   path:"*",
   redirect:"/num"
  }
 ]
})

完成后啟動,即可看到結(jié)果。計(jì)數(shù)器演示完成。

現(xiàn)在開始列表演示。

src目錄下新建api文件夾,再新建api文件。

Vuex如何實(shí)現(xiàn)計(jì)數(shù)器

api/cover.js:

const _cover = [
 {"id": 1, "title": "iPad 4 Mini", "price": 500.01, "inventory": 2},
 {"id": 2, "title": "H&M T-Shirt White", "price": 10.99, "inventory": 10},
 {"id": 3, "title": "Charli XCX - Sucker CD", "price": 19.99, "inventory": 5}
];


export default {
 getCover(cb) {
  setTimeout(() => cb(_cover), 100);
/*  $.get("/api/data",function (data) {
   console.log(data);
  })*/

 },
}

修改store/modules/cover.js:(定義數(shù)據(jù)模型)

import cover from '../../api/cover'

const state = {
 all:[]
};

const getters={
 allCover:state=>state.all  //getter用來提供訪問接口
};

const actions = {
 getAllCover({commit}){
  cover.getCover(covers=>{
   commit('setCover',covers)    //觸發(fā)setCover修改。
  })
 },
 removeCover({commit},cover){
  commit('removeCover',cover)
 }
};

const mutations = {  //mutations用來修改state。
 setCover(state,covers){
  state.all = covers
 },
 removeCover(state,cover){
  console.log(cover.id);
  state.all = state.all.filter(function (OCover) {
   return OCover.id !== cover.id
  })
 }
};

export default {
 state,getters,actions,mutations
}

store內(nèi)的index.js中注冊數(shù)據(jù)模型:

import Vue from "vue"
import Vuex from 'vuex'
import cover from './modules/cover'

Vue.use(Vuex);  //務(wù)必在new Vuex.Store之前use一下

export default new Vuex.Store({

 modules:{
  cover     //注冊cover數(shù)據(jù)模型
 },

 state:{
  count:0    //計(jì)數(shù)器的count
 },
 mutations:{
  increment(state){
   state.count++
  }
 }
})

components文件夾內(nèi)新建List.vue組件,內(nèi)容如下:

<template>
 <div class="list">
  <ul>
   <li v-for="cover in covers" @click="removeCover(cover)">
    {{cover.title}}
   </li>
  </ul>
  <p>
   {{covers}}
  </p>
  <h3>請嘗試點(diǎn)擊li。</h3>
  <router-link to="/num">計(jì)數(shù)器demo</router-link>

 </div>
</template>

<script>
import {mapGetters,mapActions} from 'vuex';

export default {
 computed:mapGetters({
  covers:"allCover"   //利用module的getter獲得數(shù)據(jù)
 }),

 methods:mapActions([
  'removeCover'    //利用module的action刪除數(shù)據(jù)
 ]),

 created(){
  this.$store.dispatch('getAllCover')  //調(diào)用cover數(shù)據(jù)模型的getAllCover action 用來初始化列表數(shù)據(jù)。
 }
}
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
 .list{
  text-align: left;
 }
</style>

路由中注冊新組件:

import Vue from 'vue'
import Router from 'vue-router'
import Num from '../components/Num'
import List from '../components/List'

Vue.use(Router)

export default new Router({
 routes: [
  {
   path:'/num',
   component:Num
  },
  {
   path:'/list',
   component:List
  },
  {
   path:"*",
   redirect:"/num"
  }
 ]
})

關(guān)于“Vuex如何實(shí)現(xiàn)計(jì)數(shù)器”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI