前端技术之如何在Vue中使用clipboardjs复制服务端数据

5次阅读

共计 1481 个字符,预计需要花费 4 分钟才能阅读完成。

第一步 创建点击对象页面元素,并绑定业务数据。

<el-button type="text" size="mini" class="copy-button"

  :data-resource-type="scope.data.resource\_type"

  :data-resource-id="scope.data.resource\_id">

  复制链接

</el-button>

第二步 引入 clipboard.js。

import ClipboardJS from 'clipboard';

第三步 创建 ClipboardJS 对象实例。



mounted() {

  this.clipboard = new ClipboardJS('.copy-button', {text: () => this.copyLink

  });

  

  ...

}

第四步:替换 clipboard 对象实例的默认的 onClick 事件。

mounted() {

  ...

  const that = this;

  const oldOnClick = this.clipboard.onClick;

  this.clipboard.onClick = function onClick(e) {const resource\_type = e.delegateTarget.getAttribute('data-resource-type');

    const resource\_id = e.delegateTarget.getAttribute('data-resource-id');

    console.log('resource\_type, resource\_id is', resource\_type, resource\_id)

    that.$axios

      .post(APIS.Link, {

        type: 'h5\_ugc\_detail',

        params: {ugc\_id: resource\_id, ugc\_type: resource\_type},

        \_csrf: that.$store.state.csrfToken

      })

      .then(res => {

        that.copyLink = res.data.data.link;

        oldOnClick.bind(that.clipboard)(e);

      })

      .catch(err => {});

  };

  ...

}

第五步:监听并处理操作成功与失败事件。

mounted() {

  ...

  this.clipboard.on('success', this.clipOptions.success);

  this.clipboard.on('error', this.clipOptions.error);

}

其中 clipOptions 类似如下:

computed: {clipOptions() {

    return {success: (e) => {this.$message.success('复制成功');

      },

      error: () => {this.$message.error('复制失败');

      }

    };

  },

  ...

}

第六步:vue 生命周期结束时,销毁 clipboard 对象。

unmounted() {this.clipboard && this.clipboard.destroy();

}

正文完
 0