# wx miniProgram动态复制粘贴功能
1、.wxml文件如下:
<view wx:for="{{list}}">
<text bindtap="copyText" data-key="{{item.text}}">{{ item.text}}</text>
</view>
2、.js内容:
Page({
data: {
list: [{
text: "1000001300"
},
{
text: "2010012333"
},
{
text: "3138275648"
}
]
},
copyText(e) {
let key = e.currentTarget.dataset.key;
wx.setClipboardData({
data: key,
success(res) {
console.log(res, key);
wx.getClipboardData({
success(res) {
wx.showToast({
title: '复制成功',
})
}
})
}
})
}
})
3、特别注意:要复制的动态数据不可为 Number 类型,必须为String文本