ClipboardItem.types - Web APIs 编辑
Draft
This page is not complete.
The read-only types
property of the ClipboardItem
interface returns an Array
of MIME types available within the ClipboardItem
Syntax
var types = clipboardItem.types;
Value
An Array
of available MIME types.
Examples
In the below example, we're returning all items on the clipboard via the clipboard.read()
method. Then checking the types
property for available types before utilizing the ClipboardItem.getType()
method to return the Blob
object. If no clipboards contents is found for the specified type, an error is returned.
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论