uni-app 市场插件有这一块功能的使用
-
引入
import h5Copy from '@/js_sdk/junyi-h5-copy/junyi-h5-copy.js' -
使用
methods: {
//复制
copy(orderNumber) {
// #ifdef H5
const result = h5Copy(orderNumber);
if (result === false) {
uni.showToast({
title: '不支持'
});
} else {
uni.showToast({
title: '复制成功',
icon: 'none'
});
}
// #endif
// #ifdef MP
uni.setClipboardData({
data: orderNumber,
success: function() {
console.log('success');
}
});
// #endif
},
}
网友评论