欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

用Vue+axios写一个实时搜索

程序员文章站 2022-03-24 11:57:29
刚刚在学vue,试着写了一个实时搜索文件。 思路:1.input 通过v-model绑定。2.通过watch检测输入结果变化。3根据结果变化从api调用不同的数据。 代码如下:

刚刚在学vue,试着写了一个实时搜索文件。

思路:1.input 通过v-model绑定。2.通过watch检测输入结果变化。3根据结果变化从api调用不同的数据。

代码如下:

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>vue</title>
<script src="./vue.js"></script>
<script src="./axios.min.js"></script>
</head>
<body>
<div id="app">
搜索:<input v-model='search' /></br>
{{result}}
</div>
<script>
 var app = new vue({
     el:'#app',
     data:{
        search:'',
        result:''
     },
     watch:{
         search: function(val, oldval){
            // console.log(val,oldval)
             _self=this;
              axios.get('http://localhost/d/apisearch.php?info='+val).then(function(response){
                _self.result=response.data})
         }
     }
 })
</script>
</body>
</html>