微信小程序一键复制

微信小程序一键复制功能

记一下微信小程序一键复制功能,一键复制成功,可以实现粘贴

1
2
3
4
5
6
7
8
9
10
11
copy:function(){
var _this = this;
wx.setClipboardData({
data:_this.data.options,
success:function(res){
wx.showToast({
title: '复制成功'
})
}
})
}
0%