ClipboardItem.getType() - Web APIs 编辑
Draft
This page is not complete.
The getType()
method of the ClipboardItem
interface returns a Promise
that resolves with a Blob
of the requested MIME type or an error if the MIME type is not found.
Syntax
var blob = clipboardItem.getType(type);
Parameters
type
- A valid MIME type.
Return value
A Promise
that resolves with a Blob
object.
Exceptions
DOMException
- The
type
does not match a known MIME type. TypeError
- No parameter is specified or the
type
is not that of theClipboardItem
.
Examples
In the following example, we're returning all items on the clipboard via the clipboard.read()
method. Then utilizing the ClipboardItem.types
property to set the getType()
argument and return the corresponding blob object.
async function getClipboardContents() {
try {
const clipboardItems = await navigator.clipboard.read();
for (const clipboardItem of clipboardItems) {
for (const type of clipboardItem.types) {
const blob = await clipboardItem.getType(type);
// we can now use blob here
}
}
} catch (err) {
console.error(err.name, err.message);
}
}
Specifications
Specification | Status | Comment |
---|---|---|
Clipboard API and events The definition of 'ClipboardItem' in that specification. | Working Draft | Initial definition. |
Browser compatibility
BCD tables only load in the browser
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论