码迷,mamicode.com
首页 > 其他好文 > 详细

vue中input输入框的模糊查询实现

时间:2018-05-16 19:44:29      阅读:1581      评论:0      收藏:0      [点我收藏+]

标签:cat   rds   model   code   OLE   通过   get   行数据   ref   

最近在使用vue写webapp在,一些感觉比较有意思的分享一下。

1:input输入框:

<input class="s-search-text" placeholder="猜你喜欢我们" id="s-search-text" ref="searchval" v-model="message" @keyup="search">

2:对input输入框的keyup事件进行处理,通过每输入一个字符触发一次keyup事件,来对接口进行数据请求。

search () {
   let searchText = this.$refs.searchval.value
   if (searchText ==‘‘) {
       return
   } else {
       this.closeState = true
       this.searchState.showsug = true
       this.searchState.searchtext = this.$refs.searchval.value
       this.$emit(‘searchstate‘, this.searchState)
  }
  axios.get(‘http://localhost:3000/search/suggest?keywords=‘ + searchText, {}, {headers:{‘Content-Type‘:‘application/x-www-form-urlencoded‘}})
      .then((res) => {
         if (res.data.code == 200) {
             this.$emit(‘search‘, res.data.result.allMatch)
         }
      })
      .catch((err) => {
         console.log(err)
       })
   },

  github地址:https://github.com/xu-jinkai/vue-music

  

vue中input输入框的模糊查询实现

标签:cat   rds   model   code   OLE   通过   get   行数据   ref   

原文地址:https://www.cnblogs.com/sk-3/p/9047482.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!