clipboard.uvue 2.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
<template>
	<view>
		<page-head :title="title"></page-head>
		<view class="uni-padding-wrap">
			<view class="uni-title">请输入剪贴板内容</view>
			<view class="uni-list">
				<view class="uni-list-cell">
					<input class="uni-input" type="text" placeholder="请输入剪贴板内容" :value="data" @input="dataChange"/>
				</view>
			</view>
			<view class="uni-btn-v">
				<button type="primary" @click="setClipboard">存储数据</button>
				<button @tap="getClipboard">读取数据</button>
			</view>
		</view>
	</view>
</template>
<script>
	export default {
		data() {
			return {
				title: 'get/setClipboardData',
23 24 25 26
				data: '',
        // 自动化测试
        getDataTest:'',
        setClipboardTest: false
27 28 29 30 31 32 33 34 35 36
			}
		},
		methods: {
			dataChange: function (e) {
				this.data = e.detail.value
			},
			getClipboard: function () {
				uni.getClipboardData({
					success: (res) => {
						console.log(res.data);
37
            this.getDataTest = res.data;
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
						const content = res.data ? '剪贴板内容为:' + res.data : '剪贴板暂无内容';
						uni.showModal({
							content,
							title: '读取剪贴板',
							showCancel: false
						})
					},
					fail: () => {
						uni.showModal({
							content: '读取剪贴板失败!',
							showCancel: false
						})
					}
				});
			},
			setClipboard: function () {
				if (this.data.length === 0) {
					uni.showModal({
						title: '设置剪贴板失败',
						content: '内容不能为空',
						showCancel: false
					})
				} else {
					uni.setClipboardData({
						data: this.data,
						success: () => {
64
              this.setClipboardTest = true
65 66 67 68 69 70 71 72
							// 成功处理
							uni.showToast({
								title: '设置剪贴板成功',
								icon: "success",
								mask: !1
							})
						},
						fail: () => {
73 74
              // bug:自动化测试时设置成功也进入了fail
              this.setClipboardTest = false
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
							// 失败处理
							uni.showToast({
								title: '储存数据失败!',
								icon: "none",
								mask: !1
							})
						}
					});
				}
			}
		}
	}
</script>

<style>
</style>