• Vue 官方文档2.x教程学习笔记 1 基础 1.5 计算属性和侦听器 1.5.2 侦听器


    Vue 官方文档2.x教程学习笔记

    1 基础

    1.5 计算属性和侦听器
    1.5.2 侦听器

    虽然计算属性在大多数情况下更合适,但有时也需要一个自定义的侦听器。

    这就是为什么 Vue 通过 watch 选项提供了一个更通用的方法,来响应数据的变化。

    当需要在数据变化时执行异步或开销较大的操作时,侦听器这个方式是最有用的。

    【举个栗子】

    DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Titletitle>
    head>
    <body>
    
    <div id="watch-example">
        <p>
            Ask a yes/no question:
            <input v-model="question">
        p>
        <p>{{answer}}p>
    div>
    
    <script src="https://cdn.jsdelivr.net/npm/axios@0.12.0/dist/axios.min.js">script>
    <script src="https://cdn.jsdelivr.net/npm/lodash@4.13.1/lodash.min.js">script>
    <script src="../js/vue.js">script>
    <script>
        var watchExampleVM = new Vue({
    
            el: '#watch-example',
            data: {
                question: '',
                answer: 'I cannot give you an answer until you ask a question!'
            },
            watch: {
                //如果 question 发生改变,这个函数就会运行
                question: function (newQuestion , oldQuestion){
                    this.answer = 'Waiting for you to stop typing...'  //意思是等你输入完成
                    this.debouncedGetAnswer()
                }
            },
            created: function (){
                // `_.debounce` 是一个通过 Lodash 限制操作频率的函数。
                // 在这个例子中,我们希望限制访问 yesno.wtf/api 的频率
                this.debouncedGetAnswer = _.debounce(this.getAnswer , 500)
            },
    
            methods: {
                getAnswer: function (){
                    if (this.question.indexOf('?') === -1){
                        this.answer = '\'Questions usually contain a question mark. :-)' //意思是问题一般包含一个问号
                        return  //没有问号就退出函数执行
                    }
                    //问题有问号
                    this.answer = 'Thinking...'
                    var vm = this
                    axios.get('https://yesno.wtf/api')
                        .then(function (response){
                            vm.answer = _.capitalize(response.data.answer)
                        })
                        .catch(function (error){
                            vm.answer = 'Error! Could not reach the API. ' + error
                        })
                }
            }
    
        })
    script>
    body>
    html>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63

    浏览器运行效果

    在这里插入图片描述

    在这个栗子中,用 watch 选项允许我们执行异步操作 (访问一个 API),限制我们执行该操作的频率,并在我们得到最终结果前,设置中间状态。

    这些都是计算属性无法做到的。

    除了 watch 选项之外,您还可以使用命令式的 vm.$watch API。

    https://v2.cn.vuejs.org/v2/api/#vm-watch

    在这里插入图片描述

  • 相关阅读:
    [Android][音频] 关于AudioTrack libaudioclient libaaudio
    【Serverless】快速集成云函数HarmonyOS
    HTML5新增文本标签
    Spring Boot 异步线程静态获取request对象为空 RequestContextHolder 为空 Java 异步线程获取request为空
    2022第四届长安杯复盘
    利用ChatGPT完成2024年MathorCup大数据挑战赛-赛道A初赛:台风预测与分析
    spring+vue项目搭建
    AIOPS 学习之路
    百度联合哈尔滨发布城市大模型“冰城-百度·文心”, 助力城市智能化建设
    owl的使用
  • 原文地址:https://blog.csdn.net/weixin_44226181/article/details/128169128