Skip to content

写入剪贴板

将文本内容写入 iOS 设备的系统剪贴板。

接口说明

接口类型

execShortcut

参数

参数名类型必填说明
deviceIdstring设备 ID
directivestring'writeClipboard'
payloadstring要写入剪贴板的文本内容

返回值

javascript
true  // 写入成功返回 true

基本使用

javascript
// 写入固定文本
await apiInvoke('execShortcut', {
    deviceId: 'P72578581E07',
    directive: 'writeClipboard',
    payload: 'Hello iClick!'
})
// 模拟粘贴操作(Command+V)
await apiInvoke('sendKey', {
    deviceId: 'P72578581E07',
    key: 'v',
    fnkey: 'command'
})

商务合作:try.catch@foxmail.com