凌的博客

您现在的位置是: 首页 > 前端学习 > Vue > 

Vue

uni-app 复制、粘贴

2022-08-10 Vue 1289
uni.setClipboardData({
	data: 'hello uniapp',
	success: function() {
		//重点~做笔记
		//在success中加入uni.hideToast()可以解决
		uni.hideToast();
		//以下就可自定义操作了~
	},
	fail: function(err) {
		uni.showToast({
			title: '复制失败',
			duration: 2000,
			icon: 'none'
		});
	}
});


文章评论

0条评论