微信小程序wx.setClipboardData一键复制动态获取值

wxml.
在要写的代码里加key属性
data-key="{ {item.uname}}\n{ {item.tel}}\n{ {item.addr}}"(获取循环的内容信息)
js.
//一键复制
copy: function (e) {
wx.setClipboardData({
data: e.currentTarget.dataset.key, //获取wxml页面中data-key的值
success: function (res) {
wx.showModal({
title: ‘提示’,
content: ‘复制成功’,
success: function (res) {
if (res.confirm) {
console.log(‘确定’)
} else if (res.cancel) {
console.log(‘取消’)
}
}
})
}
})
},

你可能感兴趣的:(javascript)