剪贴板 | clipboard
在系统剪贴板上执行复制和粘贴操作。
过程:主要,渲染器
以下示例显示如何将字符串写入剪贴板:
const {clipboard} = require('electron')
clipboard.writeText('Example String')在X Window系统上,还有一个选择剪贴板。要操纵它,你需要传递selection给每个方法:
const {clipboard} = require('electron')
clipboard.writeText('Example String', 'selection')
console.log(clipboard.readText('selection'))Methods
clipboard模块具有以下方法:
注意:实验API将被标记为未来,并且可能会被删除。
clipboard.readText([type])
typeString (optional)
返回String- 作为纯文本的剪贴板中的内容。
clipboard.writeText(text[, type])
textStringtypeString (optional)
text以纯文本的形式写入剪贴板。
clipboard.readHTML([type])
typeString (optional)
返回String- 作为标记的剪贴板中的内容。
clipboard.writeHTML(markup[, type])
markupStringtypeString (optional)
写入markup剪贴板。
clipboard.readImage([type])
typeString (optional)
返回NativeImage- 剪贴板中的图像内容。
clipboard.writeImage(image[, type])
imageNativeImagetypeString (optional)
写入image剪贴板。
clipboard.readRTF([type])
typeString (optional)
返回String- 作为RTF的剪贴板中的内容。
clipboard.writeRTF(text[, type])
textStringtypeString (optional)
将其写入textRTF中的剪贴板。
clipboard.readBookmark() macOS Windows
Returns Object:
titleStringurlString
返回包含表示剪贴板中书签的键title和对象url。该title和url值将是空的字符串时,书签不可用。
clipboard.writeBookmark(title, url[, type]) macOS Windows
titleStringurlStringtypeString (optional)
将书签title和url书签写入剪贴板。
注意: Windows上的大多数应用程序不支持将书签粘贴到它们中,因此您可以使用clipboard.write书签和回退文本写入剪贴板。
clipboard.write({
text: 'https://electron.atom.io',
bookmark: 'Electron Homepage'
})clipboard.readFindText() macOS
返回String- 查找粘贴板上的文本。该方法在从渲染器进程调用时使用同步IPC。无论何时激活应用程序,都会从查找粘贴板重新读取缓存的值。
clipboard.writeFindText(text) macOS
textString
text以纯文本形式将其写入查找粘贴板。该方法在从渲染器进程调用时使用同步IPC。
clipboard.clear([type])
typeString (optional)
清除剪贴板内容。
clipboard.availableFormats([type])
typeString (optional)
返回String[]- 剪贴板支持的格式数组type。
clipboard.has(format[, type]) Experimental
formatStringtypeString (optional)
返回Boolean- 剪贴板是否支持指定的format。
const {clipboard} = require('electron')
console.log(clipboard.has('<p>selection</p>'))clipboard.read(format) Experimental
formatString
返回String- format从剪贴板中读取类型。
clipboard.readBuffer(format) Experimental
formatString
返回Buffer- format从剪贴板中读取类型。
clipboard.writeBuffer(format, buffer[, type]) Experimental
format串buffer缓冲type字符串(可选)
将其写入buffer剪贴板中format。
clipboard.write(data[, type])
data目的text字符串(可选)html字符串(可选)imageNativeImage(可选)rtf字符串(可选)bookmark字符串(可选) - 网址at的标题text。
type字符串(可选)
const {clipboard} = require('electron')
clipboard.write({text: 'test', html: '<b>test</b>'})写入data剪贴板。
本文档系腾讯云开发者社区成员共同维护,如有问题请联系 cloudcommunity@tencent.com

