zoukankan      html  css  js  c++  java
  • 009——VUE中watch监听属性变化实现类百度搜索栏功能

    <!DOCTYPE html>
    <html>
    <head>
        <meta charset="UTF-8">
        <title>watch监听属性变化实现类百度搜索栏功能</title>
        <script src="vue.js"></script>
        <script src="node_modules/axios/dist/axios.js"></script>
    </head>
    <body>
    <div id="lantian">
        <input type="text" v-model="word"/>
        <h1>
            结果:{{result}}
        </h1>
    </div>
    <script>
        var app = new Vue({
            el: '#lantian',
            watch: {
                word: function (newV, oldV) {
                    //console.log(newV+'=>'+oldV);//输出:新值和旧值
                    //使用axios发送请求,需要安装node.js。在使用:npm install axios 安装axios
                    axios.get('9.php?word=' + newV).then(function (response) {
                        console.log(response);
                        app.result=response.data;
                    });
                }
            },
            data: {
                word: '',
                result: ''
            }
        });
    </script>
    </body>
    </html>
    

      9.php中的代码:

    <?php
    echo "你搜索的内容是:".$_GET['word'];
    

      

  • 相关阅读:
    双向(端)链表、栈、队列
    WPF 3D基础(1)
    静态查找
    栈和队列 迷宫求解
    异步编程Demo
    WPF 3D基础(2)
    串操作
    链栈和链队
    Linux恢复数据
    word文件修复窍门
  • 原文地址:https://www.cnblogs.com/yiweiyihang/p/8064762.html
Copyright © 2011-2022 走看看