watch侦听器
https://cn.vuejs.org/guide/essentials/watchers.html
虽然计算属性在大多数情况下更适合,但有时也需要一个自定义的侦听器。
这就是为什么 vue 通过 watch 选项提供了一个更通用的方法来响应数据的变化。当需要在数据变化时执行异步或开销较大的操作时,这个方式是最有用的。
在组合式 API 中,我们可以使用watch
函数在每次响应式状态发生变化时触发回调函数:
vue:
<script setup> import { ref, watch } from 'vue' const question = ref('') const answer = ref('Questions usually contain a question mark. ;-)') // 可以直接侦听一个 ref watch(question, async (newQuestion, oldQuestion) => { if (newQuestion.indexOf('?') > -1) { answer.value = 'Thinking...' try { const res = await fetch('https://yesno.wtf/api') answer.value = (await res.json()).answer } catch (error) { answer.value = 'Error! Could not reach the API. ' + error } } }) </script> <template> <p> Ask a yes/no question: <input v-model="question" /> </p> <p>{{ answer }}</p> </template>
标签:const,vuejs,question,watch,侦听器,answer,ref From: https://www.cnblogs.com/zuoyang/p/17092350.html