微信小程序如何获取当前剪切板中的内容?今天我们介绍一下能过wx.getClipboardData获取剪切板中的内容
示例代码
wx.getClipboardData({ success (res){ console.log(res.data) } })
方法介绍:wx.getClipboardData(Object object)
获取系统剪贴板的内容
参数
Object object
属性 | 类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
success | function | 否 | 接口调用成功的回调函数 | |
fail | function | 否 | 接口调用失败的回调函数 | |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
如需了解微信小程序一键复制功能(wx.setClipboardData)请点这里