// 检查粘贴板
checkClipText: function () {
var th = this;
wx.getClipboardData({
success(res) {
console.log("====粘贴板内容====="+JSON.stringify(res));
var a = res.data;
if (myApp.commonutils.isNull(a)) {
myApp.commonutils.showCommonToast('粘贴板暂无内容');
return
}
if (a.length > 20) {
myApp.commonutils.showCommonToast('粘贴板内容长度超过20位');
return
}
wx.showToast({
title: '粘贴成功',
icon: 'none'
})
myApp.commonutils.showTwoModal('是否将以下内容复制到拨号盘?\n' + a, function () {
th.setData({
inputNum: a
})
})
},
fail(res) {
myApp.commonutils.showCommonToast('粘贴板error');
}
})
},
别的手机都可以,这款手机一直粘贴失败
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)