我正在尝试监听剪贴板事件。将文本复制到剪贴板时,我希望有一个动作发生。
我已经尝试了剪贴板监视,但是由于某些python错误,它甚至都没有安装。 然后我尝试了扩展的clip-board-watch,但是在运行代码时出现了错误。
const clipboard = require('electron-clipboard-extended')
clipboard
.on('text-changed', () => {
let currentText = clipboard.readText()
})
.once('text-changed', () => {
console.log('TRIGGERED ONLY ONCE')
})
.on('image-changed', () => {
let currentIMage = clipboard.readImage()
})
.startWatching();
clipboard.off('text-changed');
这给了我
let watcherId = null, previousText = clipboard.readText(), previousImage = clipboard.readImage()
^
TypeError: Cannot read property 'readText' of undefined
at Object.<anonymous> (C:\Users\Daniel\Documents\AnyGameQuestionBot\node_modules\electron-clipboard-extended\index.js:5:48)
at Module._compile (module.js:652:30)
at Object.Module._extensions..js (module.js:663:10)
at Module.load (module.js:565:32)
at tryModuleLoad (module.js:505:12)
at Function.Module._load (module.js:497:3)
at Module.require (module.js:596:17)
at require (internal/module.js:11:18)
at Object.<anonymous> (C:\Users\Daniel\Documents\AnyGameQuestionBot\anytriviabot.js:1:81)
at Module._compile (module.js:652:30)
有没有其他可行的选择,或者我应该怎么做?