【发布时间】:2020-10-17 23:06:00
【问题描述】:
在 Nuxt 应用程序中,我有一个 Vuex 商店,它首先通过从外部 URL 获取一些“属性”。然后我想使用这些数据来更新另一个 状态元素称为“位置”,这些“属性”中的每一个都有一个“位置”,但我不确定如何在获取所有属性后运行它。
export const mutations = {
updateProperties: (state, properties) => {
state.properties = properties
},
updateLocations: (state) => {
const locationsArr = [...new Set( state.properties.map( property => property.acf.location_tab_group.location_table.city ) )]
state.locations = locationsArr;
}
}
export const actions = {
async getProperties({ state, commit }) {
if (state.properties.length) return
try {
let properties = await fetch(
`https://...`
).then((res) => res.json())
properties = properties
.filter((el) => el.status === 'publish')
.map(({ id, slug, title, acf }) => ({
id,
slug,
title,
acf,
}))
commit('updateProperties', properties)
} catch (err) {
console.log(err)
}
},
getLocations({state, commit}) {
if(state.properties.length) {
const locationsArr = [...new Set( state.properties.map( property => property.acf.location_tab_group.location_table.city ) )]
commit('updateLocations', locationsArr)
}
}
}
所以基本上,我想知道如何仅在获取所有属性后才调用“updateLocations”突变。
【问题讨论】:
标签: vue.js vuejs2 nuxt.js vuex