Vue.js'v-bind:类'即使模型没有更新也不会更新

时间:2016-12-16 13:44:47

标签: javascript vue.js vuejs2

我有一个项目列表,我想将样式应用于当前选定的样式。我也在使用Vuex来管理状态。

我的列表组件:

const List = Vue.component('list', {
    template:
            '<template v-if="items.length > 0">' +
                '<ul class="list-group md-col-12">' +
                    '<a href="#" v-for="(item, index) in items" class="list-group-item list-group-item-action" v-bind:class="{ active: item.isActive }" v-on:click="selectItem(index);">{{ g.text }}</a>' +
                '</ul>' +
            '</template>'
    computed: {
        items: function() {
            return this.$store.state.items;
        }
    },
    methods: {
        selectItem: function (index) {
            this.$store.commit('selectItem', index);
        }
    }
});

我的商店:

const store = new Vuex.Store({
    state: {
        items: [],
        currentIndex: -1
    },
    mutations: {
        selectItem: function(state, index) {
            if (index === state.currentIndex) {
                return;
            }
            if (state.currentIndex > -1) {
                delete state.items[state.currentIndex].isActive;
            }
            state.currentIndex = index;
            state.items[state.currentIndex].isActive = true;
        }
    }
});

我所看到的,同样使用Chrome DevTools中的Vue'标签'是每当我点击列表中的某个项目时,“items”数组正在正确更新,但是没有设置类。

此外,使用时间旅行调试来完成所有突变,在这种情况下,类已设置。

知道为什么会出现这种行为以及如何解决这个问题?

2 个答案:

答案 0 :(得分:7)

事实证明我应该更深入地阅读文档。特别是Change Detection Caveats

解决方案是改变商店突变:

selectItem: function(state, index) {
    if (index === state.currentIndex) {
        return;
    }
    if (state.currentIndex > -1) {
        Vue.delete(state.items[state.currentIndex], 'isActive');
    }
    state.currentIndex = index;
    Vue.set(state.items[state.currentIndex], 'isActive', true);
}

此处的关键是使用Vue.deleteVue.set函数。

帮助我的其他答案https://stackoverflow.com/a/40961247/525843

答案 1 :(得分:-1)

请尝试以下操作:

const List = Vue.component('list', {
    template:
            '<template>' +
                '<ul class="list-group md-col-12">' +
                    '<a href="#" v-for="(item, index) in items" class="list-group-item list-group-item-action" v-bind:class="{ active: item.isActive }" v-on:click="selectItem(index);">{{ g.text }}</a>' +
                '</ul>' +
            '</template>'