0

我的应用程序中有以下组件:

<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>
4

1 回答 1

0

一种可能的解决方案是包装对refine函数的调用。然后,您可以触发任何自定义代码。

<template>
  <!-- ... -->
  <ais-menu attribute="categories">
    <ul slot-scope="{ items, refine }">
      <li v-for="item in items" :key="item.value">
        <a href="#" @click.prevent="onMenuClick(item.value, refine)">
          {{ item.label }}
        </a>
      </li>
    </ul>
  </ais-menu>
</template>

<script>
export default {
  // ...
  methods: {
    onMenuClick(value, refine) {
      console.log(value);
      refine(value);
    }
  }
};
</script>

您可以在CodeSandbox上找到一个示例。

于 2019-10-18T20:02:01.053 回答