- 剪贴板
- 方法
- clipboard.readText([type])
- clipboard.writeText(text[, type])
- clipboard.readHTML([type])
- clipboard.writeHTML(markup[, type])
- clipboard.readImage([type])
- clipboard.writeImage(image[, type])
- clipboard.readRTF([type])
- clipboard.writeRTF(text[, type])
- clipboard.readBookmark() macOS Windows
- clipboard.writeBookmark(title, url[, type]) macOS Windows
- clipboard.readFindText() macOS
- clipboard.writeFindText(text) macOS
- clipboard.clear([type])
- clipboard.availableFormats([type])
- clipboard.has(format[, type]) 实验功能
- clipboard.read(format) 实验功能
- clipboard.readBuffer(format) 实验功能
- clipboard.writeBuffer(format, buffer[, type]) 实验功能
- clipboard.write(data[, type])
- 方法
剪贴板
在系统剪贴板上执行复制和粘贴操作。
进程: Main, Renderer
下面的示例演示如何将字符串写入剪贴板:
const { clipboard } = require('electron')
clipboard.writeText('Example String')
On Linux, there is also a selection
clipboard. To manipulate it you need to pass selection
to each method:
const { clipboard } = require('electron')
clipboard.writeText('Example String', 'selection')
console.log(clipboard.readText('selection'))
方法
clipboard
对象具有以下方法:
注意: 被标记为实验性的 api 将来可能被删除。
clipboard.readText([type])
type
String (optional) - Can beselection
orclipboard
.selection
is only available on Linux.返回String
- 剪贴板中的纯文本内容。
clipboard.writeText(text[, type])
text
Stringtype
String (optional) - Can beselection
orclipboard
.selection
is only available on Linux.将text
作为纯文本写入剪贴板。
clipboard.readHTML([type])
type
String (optional) - Can beselection
orclipboard
.selection
is only available on Linux.返回String
- 剪贴板中的HTML内容。
clipboard.writeHTML(markup[, type])
markup
Stringtype
String (optional) - Can beselection
orclipboard
.selection
is only available on Linux.将markup
写入剪贴板。
clipboard.readImage([type])
type
String (optional) - Can beselection
orclipboard
.selection
is only available on Linux.返回NativeImage
- 剪贴板中的图像内容。
clipboard.writeImage(image[, type])
image
NativeImagetype
String (optional) - Can beselection
orclipboard
.selection
is only available on Linux.将image
写入剪贴板。
clipboard.readRTF([type])
type
String (optional) - Can beselection
orclipboard
.selection
is only available on Linux.返回String
- 剪贴板中的RTF内容。
clipboard.writeRTF(text[, type])
text
Stringtype
String (optional) - Can beselection
orclipboard
.selection
is only available on Linux.向剪贴板中写入 RTF 格式的text
.
clipboard.readBookmark() macOS Windows
返回 Object
:
title
Stringurl
String返回一个对象, 其中包含表示剪贴板中书签title
和url
。 当书签不可用时,title
和url
值将为空字符串。
clipboard.writeBookmark(title, url[, type]) macOS Windows
title
Stringurl
Stringtype
String (optional) - Can beselection
orclipboard
.selection
is only available on Linux.将书签的title
和url
写入剪贴板。
注意:Windows上的大多数应用程序不支持粘贴书签,因此您可以使用 clipboard.write
将书签和后备文本写入剪贴板。
clipboard.write({
text: 'https://electronjs.org',
bookmark: 'Electron Homepage'
})
clipboard.readFindText() macOS
返回 String
- 查找粘贴板上的文本。 此方法在从渲染进程调用时使用同步 IPC。 每当激活应用程序时, 都会从查找粘贴板中重新读取缓存值。
clipboard.writeFindText(text) macOS
text
String将text
作为纯文本写入查找粘贴板。此方法在从渲染进程调用时使用同步 IPC。
clipboard.clear([type])
type
String (optional) - Can beselection
orclipboard
.selection
is only available on Linux.清除剪贴板内容。
clipboard.availableFormats([type])
type
String (optional) - Can beselection
orclipboard
.selection
is only available on Linux.返回String []
- 剪贴板type
所支持的格式的数组。
clipboard.has(format[, type]) 实验功能
format
Stringtype
String (optional) - Can beselection
orclipboard
.selection
is only available on Linux.返回Boolean
, 剪贴板是否支持指定的format
。
const { clipboard } = require('electron')
console.log(clipboard.has('<p>selection</p>'))
clipboard.read(format) 实验功能
format
String返回String
- 从剪贴板中读取format
类型的内容。
clipboard.readBuffer(format) 实验功能
format
String返回Buffer
- 从剪贴板中读取format
类型的内容。
clipboard.writeBuffer(format, buffer[, type]) 实验功能
format
Stringbuffer
Buffertype
String (optional) - Can beselection
orclipboard
.selection
is only available on Linux.将buffer
作为format
类型写入剪贴板。
clipboard.write(data[, type])
data
Objecttext
String(可选)html
String(可选)image
NativeImage (可选)rtf
String (可选)bookmark
String (可选)- url 的标题text
。
type
String (optional) - Can beselection
orclipboard
.selection
is only available on Linux.
const { clipboard } = require('electron')
clipboard.write({ text: 'test', html: '<b>test</b>' })
将 data
写入剪贴板。