javascript - vue如何在action中使用loading
世界只因有你
世界只因有你 2017-05-19 10:20:47
0
1
547

在Vue中一般這樣使用loading狀態

getData(){
    this.loading = true;
    get(api).then(res => {
        this.data = res;
        this.loading = false;
    })
}

但在vuex的action中如何使用,下面範例使用了一個公開的loading發現不行,loading狀態應該是局部的,那麼如何在vuex中控制loading狀態?

  const actions = {
  getProductInfo({commit}){
    commit(types.LOADING, true)
    api.xxx()
      .then(res => {
        commit(types.PRODUCTINFO, res.data)
        commit(types.LOADING, false)
      })
  },
世界只因有你
世界只因有你

全部回覆(1)
phpcn_u1582

承接你的第二個例子,
把loading的flag放在state中,元件透過state取得是否loading

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板