小程序的复制功能实现


{{tempFileURL}}
copy:function(){
    var that=this;
    wx.setClipboardData({
      data: that.data.tempFileURL,
      success() {
        wx.showToast({
          title: '复制成功',
          icon: 'success',
          duration: 1000
        })
      }
    })
  }

你可能感兴趣的:(微信小程序)