uni-app 官网已提供了复制到剪切板的 API,不过很遗憾,它对 H5 不兼容。 没关系,我们可以对 H5 进行特殊处理已达到全端兼容,具体操作如下:

安装 vue-clipboard2 插件

npm install --save vue-clipboard2

安装完成后在 main.js 中引入并挂载

import VueClipboard from 'vue-clipboard2'
Vue.use(VueClipboard)

在组件中调用(结合官方 API)

<template>
  <view>
    <text @tap="copyText">复制</text>
  </div>
</template>
<script>
    export default {
        data() {
            return {
                text: '要复制的文本'
            }
        },
        methods: {
            copyText () {
                // #ifdef H5
                this.$copyText(this.text).then(
                    res => {
                        uni.showToast({
                            title: '复制成功'
                        })
                    }
                )
                // #endif
                // #ifndef H5
                uni.setClipboardData({
                    data: this.text,
                    success: () => {
                        uni.showToast({
                            title: '复制成功'
                        })
                    }
                })
                // #endif
            }
        }
    }
</script>
如果觉得我的文章对你有用,请点个赞