W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
clipboard
模塊提供方法來供復(fù)制和粘貼操作 . 下面例子展示了如何將一個(gè)字符串寫道 clipboard 上:
const clipboard = require('electron').clipboard;
clipboard.writeText('Example String');
在 X Window 系統(tǒng)上, 有一個(gè)可選的 clipboard. 你可以為每個(gè)方法使用 selection
來控制它:
clipboard.writeText('Example String', 'selection');
console.log(clipboard.readText('selection'));
clipboard
模塊有以下方法:
注意: 測(cè)試 APIs 已經(jīng)標(biāo)明,并且在將來會(huì)被刪除 .
clipboard.readText([type])
type
String (可選)以純文本形式從 clipboard 返回內(nèi)容 .
clipboard.writeText(text[, type])
text
Stringtype
String (可選)以純文本形式向 clipboard 添加內(nèi)容 .
clipboard.readHtml([type])
type
String (可選)返回 clipboard 中的標(biāo)記內(nèi)容.
clipboard.writeHtml(markup[, type])
markup
Stringtype
String (可選)向 clipboard 添加 markup
內(nèi)容 .
clipboard.readImage([type])
type
String (可選)從 clipboard 中返回 NativeImage 內(nèi)容.
clipboard.writeImage(image[, type])
image
NativeImagetype
String (可選)向 clipboard 中寫入 image
.
clipboard.readRtf([type])
type
String (可選)從 clipboard 中返回 RTF 內(nèi)容.
clipboard.writeRtf(text[, type])
text
Stringtype
String (可選)向 clipboard 中寫入 RTF 格式的 text
.
clipboard.clear([type])
type
String (可選)清空 clipboard 內(nèi)容.
clipboard.availableFormats([type])
type
String (可選)返回 clipboard 支持的格式數(shù)組 .
clipboard.has(data[, type])
Experimentaldata
Stringtype
String (可選)返回 clipboard 是否支持指定 data
的格式.
console.log(clipboard.has('<p>selection</p>'));
clipboard.read(data[, type])
Experimentaldata
Stringtype
String (可選)讀取 clipboard 的 data
.
clipboard.write(data[, type])
data
Objecttext
Stringhtml
Stringimage
NativeImagetype
String (可選)clipboard.write({text: 'test', html: "<b>test</b>"});
向 clipboard 寫入 data
.
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: