Flutter教程

Clipboard

Contents

Clipboard management plugin for Cordova that supports iOS, Android, and Windows Phone 8.

https://github.com/ihadeed/cordova-clipboard

联系我们?

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic's experts offer official maintenance, support, and integration help.

Contact Us Today!

Ionic 剪切板 Clipboard插件的安装(Installation)

ionic cordova plugin add cordova-clipboard npm install @ionic-native/clipboard
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
ionic enterprise register --key=YOURPRODUCTKEY npm install @ionic-enterprise/clipboard

Ionic 剪切板 Clipboard插件支持的平台(Supported Platforms)

  • Android
  • iOS
  • Windows Phone 8

Ionic 剪切板 Clipboard插件的用法(Usage)

import { Clipboard } from '@ionic-native/clipboard/ngx';

constructor(private clipboard: Clipboard) { }

...


this.clipboard.copy('Hello world');

this.clipboard.paste().then(
   (resolve: string) => {
      alert(resolve);
    },
    (reject: string) => {
      alert('Error: ' + reject);
    }
  );

this.clipboard.clear();