关于小程序input传值搜索


      

 getValue(e){
    this.setData({
      inputValue: e.detail.value
    })
    if (this.data.inputValue==''){
      this.setData({
        search: ''
      })
    }
    util.request(util.apiUrl + 'xm/xcx.car.select' + '/' , 'Post', {
      cate_id: 1, search: this.data.inputValue 
    }).then((res) => {
      console.log(res)
      this.setData({
        search:res.data.search
      })
    }).catch(err => {
      util.showToast('请求失败')
    });
  },

获取input中的value进行传值搜索

你可能感兴趣的:(前端)