Vuex:计算属性返回未定义 - asyc Axios

时间:2017-11-28 17:47:06

标签: asynchronous vue.js axios vuex

我有异步axios调用我的数据库,我正在调用网站加载时的操作。 (我已尝试在我的Vue-router上调度beforeEnter(),在Form.Vue上调用beforeCreated()和Created())

我有一个计算属性使用getter返回信息。

我遇到的问题是在页面加载完毕后数据到达并返回未定义 - 页面上没有任何渲染。

如果我查看我的Vue DevTools,所有数据都在该州的正确位置。

如何在页面之前完成数据加载?

// ACTIONS

async loadInputs({ state, getters, commit, dispatch }) {    
 if (!state.loading) {
  commit('setLoading', true)

  const inputLists = axios.get('/companyInputLists')
  const inputs = axios.get('/companyInputs')

  commit('setLoading', false)
  commit('loadInputs' , [await inputLists, await inputs])

 }
},

set ({commit}, value) {
  commit('updateValue', value)
},

//存取器

setLoading(state, value) {
  state.loading = value
},

 loadInputs(state, data){
  state.layout = {}
  state.data = {}
  data[0].data.map(list => {
    list['inputs'] = []
    state.layout[list.order] = list

    data[1].data.map(input => {
        if(input.list_id == list.id){
            state.layout[list.order].inputs.push(input)
            state.data[input.label] = ''
        }
     })
   })
 },

updateValue(state, value) {
  state.data[value.type] = value.value
},

// GETTERS

get(state) {
    console.log(state)
    return state
 },
}

// FORM.VUE

  <span>

    //LIST TEST and v-if test
    <div v-if="lists">
      {{lists}}
    </div>
    test
    {{ lists }}



<v-layout row wrap justify-center>

  <draggable class="dragArea layout row wrap justify-center" :options="{group:'lists'}">
    <v-flex v-for="list in lists" v-bind:key="list.index" :class="[list.label, flexBoxSize(list.size)]">

      <v-subheader v-text="list.label"></v-subheader>

      <draggable class="dragArea layout row wrap" :options="{group:'inputs'}">
        <v-flex v-for="item in list.inputs" v-bind:key="item.index" :class="[item.label, flexBoxSize(item.size)]">

          <textfield v-if="item.type_id == 1" formType="clientForm" :label="item.label" :required="item.required"></textfield>
          <email v-if="item.type_id == 2" formType="clientForm" :label="item.label"  :required="item.required"></email>
          <phone v-if="item.type_id == 3" formType="clientForm" :label="item.label"  :required="item.required"></phone>
          <calendar v-if="item.type_id == 4" formType="clientForm" :label="item.label"  :required="item.required"></calendar>
          <googleMap v-if="item.type_id == 5" formType="clientForm" :label="item.label"  :required="item.required"></googleMap>
          <autocomplete v-if="item.type_id == 6" formType="clientForm" :label="item.label"  :required="item.required"></autocomplete>


        </v-flex>
      </draggable>

    </v-flex>
  </draggable>


  <v-layout row wrap justify-center>
    <submitButton formType="clientForm" path="/clientForm" :references="this.$refs"></submitButton>
    <clearButton formType="clientForm" :references="this.$refs"></clearButton>
  </v-layout>

  </v-layout>
 </span>
</template>

<script>
export default {
  components: {
    draggable,
  },

  beforeCreate(){
    this.$store.dispatch('clientForm/loadInputs')
  },

  computed: {
    lists: {
      get() {
        return this.$store.getters['clientForm/get'].layout
      },
      set(value) {
        this.$store.commit('clientForm/updateInputList', value)
      }
    }
  },

Vuex Dev Tools Showing Data in State After Page Loads

2 个答案:

答案 0 :(得分:1)

我想出了去年冬季假期的答案,并意识到这里从来没有明确的结论。经过反复的尝试和错误并通读了文档,我在Vue.js文档中找到了答案。

https://vuejs.org/v2/api/#Vue-set

Vue.set(目标,键,值) 向响应对象添加属性,确保新属性也响应,因此触发视图更新。由于Vue无法检测到正常的属性添加(例如this.myObject.newProperty ='hi'),因此必须使用此属性向反应对象添加新属性。

使用此功能,我能够通过axios调用加载数据,并让Vue检测到更改并更新DOM。

此外,您可能还需要记下Vue.delete来删除具有反应性的数据。

答案 1 :(得分:0)

我认为您可以简化loadInputs行动:

async loadInputs ({commit, state}) {
  if (!state.loading) {
    commit('setLoading', true)

    const inputLists = axios.get('/companyInputLists')
    const inputs = axios.get('/companyInputs')

    commit('setLoading', false)
    commit('loadInputs' , [await inputLists, await inputs])
   }
}

组件:

export default {
  components: {
    draggable,
  },
  computed: {
    lists: {
      get() {
        return this.$store.getters['clientForm/get'].layout
      },
      set(value) {
        this.$store.commit('clientForm/updateInputList', value)
      }
    }
  },
  created () {
    this.$store.dispatch('clientForm/loadInputs')
  },
}