我没有单独使用getters.js文件,而是使用js-> assets-> store-> modules-> user.js文件编写getter
这是我的user.js
const state = {
count : '',
list:[]
};
const mutations = {
COUNT: (state, data) => {
state.count = data
},
LIST : (state, data) => {
state.list = data
}
};
const getters = {
userCount:(state) => state.list.length
};
const actions = {
getList: ({commit,state}) => {
axios.get('/api/user/list')
.then((response) => {
commit('LIST', response.data);
})
}
};
export default {
namespaced: true,
state,
getters,
actions,
mutations
}
这是我的用户vue component-user.vue
<template>
<div class="col-lg-3 col-xs-6">
<div class="small-box bg-yellow">
<div class="inner">
<h3>{{ usercount }}</h3>
<p>User Registrations</p>
</div>
<div class="icon">
<i class="ion ion-person-add"></i>
</div>
<a href="#" class="small-box-footer">View <i class="fa fa-arrow-circle-right"></i></a>
</div>
</div>
</template>
<script>
export default{
computed: {
usercount() {
return this.$store.getters['user/userCount'];
}
},
mounted(){
this.$store.dispatch('user/getList');
}
}
</script>
在user.js中, 警报(state.list.length) 在警告框中给出正确的计数。
但在user.vue中, 警报(这一点。$ store.getters [ '用户/ USERCOUNT位']) 给'未定义'
答案 0 :(得分:0)
从中删除不必要的ByVal
:
:
答案 1 :(得分:0)
在Api控制器中,我正在使用paginate()而不是get()。vue dev工具帮助我找到了这个......
getList: ({commit,state}) => {
axios.get('/api/user/list')
.then((response) => {
commit('LIST', response.data);
})
}
将response.data更改为response.data.data