vue 使用watch监听实现类似百度搜索功能

Posted tommymarc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue 使用watch监听实现类似百度搜索功能相关的知识,希望对你有一定的参考价值。

watch监听方法,watch可以监听多个变量,具体使用方法看代码:

html:

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>vue.js 使用watch监听实现类似百度搜索功能  </title>
    <script src="vue.js"></script>
    <script src="node_modules/axios/dist/axios.js"></script>
</head>
<body>
<div id="ask"><!--vue不能控制body和html的标签-->
    <input type="text" v-model="word">
    <h1>{{result}}</h1>
</div>
<script>
    var app = new Vue({ //实例化vue
        el:#ask,//vue控制id为ask的元素,
        //watch 可以监听多个变量
        watch:{
            //监听word变量
            word:function (newV,oldV) {
                console.log(旧值:+oldV+=======>新值:+newV);
                //这里可以写异步请求我用的是axios
                axios.get(Api.php?word=+newV).then(function (res) {
                    console.log(res,这是异步返回的值);
                    //这里写异步得到值之后的动作
                    app.result=res.data;
                });
            }
        },
        data:{
            word:‘‘,
            result:‘‘

        }
    });
</script>
</body>
</html>

 

以上是关于vue 使用watch监听实现类似百度搜索功能的主要内容,如果未能解决你的问题,请参考以下文章

测试开发vue — watch监听data的数据变化

vue 中的computed 和 watch 监听

微信小程序监听data数据变化(类似VUE中的watch)

微信小程序 watch监听数据变化 类似vue中的watch

vue watch原理

Vue移动端项目——搜索联想建议功能的实现(结合watch属性和使用lodash防抖节流)