欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Vuex之理解Store的用法

 更新時(shí)間:2017年04月19日 14:53:25   作者:何凱  
本篇文章主要介紹了Vuex之理解Store的用法,Store類(lèi)就是存儲(chǔ)數(shù)據(jù)和管理數(shù)據(jù)方法的倉(cāng)庫(kù),實(shí)現(xiàn)方式是將數(shù)據(jù)和方法已對(duì)象形式傳入其實(shí)例中

1.什么是Store?

上一篇文章說(shuō)了,Vuex就是提供一個(gè)倉(cāng)庫(kù),Store倉(cāng)庫(kù)里面放了很多對(duì)象。其中state就是數(shù)據(jù)源存放地,對(duì)應(yīng)于與一般Vue對(duì)象里面的data(后面講到的actionsmutations對(duì)應(yīng)于methods)。

在使用Vuex的時(shí)候通常會(huì)創(chuàng)建Store實(shí)例new Vuex.store({state,getters,mutations,actions})有很多子模塊的時(shí)候還會(huì)使用到modules。

總結(jié),Store類(lèi)就是存儲(chǔ)數(shù)據(jù)和管理數(shù)據(jù)方法的倉(cāng)庫(kù),實(shí)現(xiàn)方式是將數(shù)據(jù)和方法已對(duì)象形式傳入其實(shí)例中。要注意一個(gè)應(yīng)用或是項(xiàng)目中只能存在一個(gè)Store實(shí)例??!

2.Store源碼分析

class Store{
  constructor (options = {}) {
  // 1.部分2個(gè)‘?dāng)嘌院瘮?shù)'判斷條件
  assert(Vue, `must call Vue.use(Vuex) before creating a store 
  instance.`) // 在Store實(shí)例化之前一定要確保Vue的存在
  assert(typeof Promise !== 'undefined', `vuex requires a Promise polyfill in this browser.`)
  //確保promise存在
  
  // 2.結(jié)構(gòu)賦值拿到options里面的state,plugins和strict
  const {
  state = {}, //rootState
  plugins = [], // 插件
  strict = false //是否嚴(yán)格模式
   } = options
   
  // 3.Store internal state創(chuàng)建store內(nèi)部屬性
  this._options = options //存儲(chǔ)參數(shù)
  this._committing = false //標(biāo)識(shí)提交狀態(tài),保證修改state只能在mutation里面,不能在外部隨意修改
  this._actions = Object.create(null) //存儲(chǔ)用戶(hù)定義的actions
  this._mutations = Object.create(null) //存儲(chǔ)用戶(hù)定義的mutations
  this._wrappedGetters = Object.create(null) //存儲(chǔ)用戶(hù)定義的getters
  this._runtimeModules = Object.create(null) //存儲(chǔ)運(yùn)行時(shí)的modules
  this._subscribers = [] //存儲(chǔ)所有堵mutation變化的訂閱者
  this._watcherVM = new Vue() //借用Vue實(shí)例的方法,$watch來(lái)觀測(cè)變化
  
  // 4.將dispatch和commit的this指向當(dāng)前store實(shí)例
  const store = this
  const { dispatch, commit } = this
  this.dispatch = function boundDispatch (type, payload) {
  return dispatch.call(store, type, payload)}
  this.commit = function boundCommit (type, payload, options) {
  return commit.call(store, type, payload, options)}}

后面文章逐步分析每一個(gè)模塊。

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • vue組件開(kāi)發(fā)props驗(yàn)證的實(shí)現(xiàn)

    vue組件開(kāi)發(fā)props驗(yàn)證的實(shí)現(xiàn)

    這篇文章主要介紹了vue組件開(kāi)發(fā)props驗(yàn)證的實(shí)現(xiàn),小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧
    2019-02-02
  • vuex vue簡(jiǎn)單使用知識(shí)點(diǎn)總結(jié)

    vuex vue簡(jiǎn)單使用知識(shí)點(diǎn)總結(jié)

    在本篇文章里小編給大家整理了關(guān)于vuex vue簡(jiǎn)單使用知識(shí)點(diǎn)總結(jié),有需要的朋友們可以參考下。
    2019-08-08
  • vue axios封裝及API統(tǒng)一管理的方法

    vue axios封裝及API統(tǒng)一管理的方法

    這篇文章主要介紹了vue axios封裝以及API統(tǒng)一管理 ,需要的朋友可以參考下
    2019-04-04
  • 最新評(píng)論