我的应用程序中有以下组件:
<ais-menu attribute="productType"></ais-menu>
我想观察这个属性的变化,并在我的页面发生变化时对其进行全局更改。
例如:
watch:{
"state.productType": {
deep: true,
handler(state){
console.log("If this text logs, my question is answered!");
}
}
}
有没有办法将观察者添加到搜索属性,或者有没有办法在属性更改时触发事件?
ais-menu 文档显示了您可以为组件设置的属性,但似乎没有任何可以监听的事件,或者设置观察者的示例。
同样,我想知道整个组件上是否有可用的东西,<ais-instant-search>
但我在文档中找不到任何东西。
这个问题是指一个'searchStore._results'
属性,但后来的评论者说它不再有效。
watch: {
'searchStore._results'(val) {
// Emit event
}
}
完整代码如下:
<template>
<div>
<ais-instant-search :search-client="searchClient" index-name="galeta_products" :routing="routing">
<div class="centered-banner text-center">
<h1 class="h2">{{ taxName }}</h1>
<p>{{ taxDescription }}</p>
</div>
<ais-menu attribute="productType">
<ul
slot-scope="{
items,
canToggleShowMore,
isShowingMore,
toggleShowMore,
refine,
createURL,
}"
>
<li v-for="item in items" :key="item.value" :class="{ 'active' : item.isRefined }">
<a
:href="createURL(item.value)"
@click.prevent="refine(item.value)"
>
{{ item.label }}
</a>
</li>
</ul>
</ais-menu>
</ais-instant-search>
</div>
</template>
<script>
import algoliasearch from 'algoliasearch/lite';
import routing from './SearchRouting.js';
export default {
props: ['taxName', 'taxDescription'],
data() {
return {
liveTaxName: this.taxName,
liveTaxDescription: this.taxDescription,
searchClient: algoliasearch(
'XXXXXXXX',
'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
),
routing
};
},
watch:{
// Here is what I want to do
"state.productType": {
deep: true,
handler(state){
this.liveTaxName = TAXONOMIES.find(tax => tax.slug == state.category).name;
this.liveTaxDescription = TAXONOMIES.find(tax => tax.slug == state.category).description;
}
}
}
};
</script>