我不知道的是,当我单击“ X清除过滤器”按钮时如何将当前的“活动”状态设置为false。
我曾尝试将isClicked = false
放入clearAllData
方法中,但没有成功。
任何提示或解决方案都会有很大帮助。谢谢!
我进行了以下设置:
<button v-for="catButton in categoryFilters" :key="catButton.id"
class="button button--link button--filter"
:class="{ active: catButton.isClicked }"
@click="loadSearchData(catButton.slug, catButton.isClicked = !catButton.isClicked)"
ref="el"
>
{{ catButton.name }}
</button>
然后我有另一个按钮来清除紧随其后的那些选择:
<button id="clear-all" v-on:click="clearAllData()">
X CLEAR FILTERS
</button>
我目前用于这些方法的方法如下:
loadSearchData(value){
let self = this;
if(categoriesArray.includes(value)){
rmh_remove(categoriesArray, value);
} else {
categoriesArray.push(value);
}
self.postsData.page = 1;
categorieString = (categoriesArray.length > 0) ? categoriesArray.join('+') : self.$route.params.slug ;
self.postsData['filter[category_name]'] = categorieString;
self.getPosts();
},
clearAllData(){
console.log(this.$refs.el);
this.postsData.page = 1;
this.postsData['filter[category_name]'] = this.$route.params.slug;
categorieString = this.$route.params.slug;
categoriesArray = [];
this.getPosts();
}
答案 0 :(得分:2)
将catButton作为唯一参数发送到loadSearchData中。
@click="loadSearchData(catButton)"
在“ loadSearchData”中,
loadSearchData(catButton){
catButton.isClicked = !catButton.isClicked
const value = catButton.slug
//...
在clearAllData
clearAllData(){
this.categoryFilters.forEach(it=>it.isClicked = false)
//..
}