读取剪贴板
读取 iOS 设备系统剪贴板中的文本内容。
接口说明
接口类型
execShortcut参数
| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
deviceId | string | ✅ | 设备 ID |
directive | string | ✅ | 'readClipboard' |
返回值
javascript
"剪贴板内容文本" // 返回剪贴板中的文本内容基本使用
javascript
// 读取剪贴板内容
const clipboardText = await apiInvoke('execShortcut', {
deviceId: 'P72578581E07',
directive: 'readClipboard'
});
console.log('剪贴板内容:', clipboardText);