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