微信小程序之扫一扫功能

今天来做下小程序扫一扫功能,因为项目需要,需要在页面搜索框加上扫码功能。


image.png

废话不多说,直接上代码。

wxml代码


  
    
     
  

js代码:

 //扫码
  scanCode: function () {
    var that = this;
    wx.scanCode({ //扫描API
      success(res) { //扫描成功
        console.log(res) //输出回调信息
        that.setData({
          scanCodeMsg: res.result
        });
        wx.showToast({
          title: '扫码成功',
          icon: 'success',
          duration: 1000
        })
      },
      fail: (res) => {//接口调用失败的回调函数
        wx.showToast({
          title: '扫码失败',
          icon: 'success',
          duration: 1000
        })
      },
    })
  }

你可能感兴趣的:(微信小程序之扫一扫功能)