gpt4 book ai didi

javascript - 在 node.js 中使用按键启动操作

转载 作者:IT老高 更新时间:2023-10-28 23:26:02 25 4
gpt4 key购买 nike

我正在使用 node.js v4.5

我编写了下面的函数来延迟发送重复消息。

function send_messages() {
Promise.resolve()
.then(() => send_msg() )
.then(() => Delay(1000) )
.then(() => send_msg() )
.then(() => Delay(1000))
.then(() => send_msg() )
;
}

function Delay(duration) {
return new Promise((resolve) => {
setTimeout(() => resolve(), duration);
});
}

我想使用按键激活消息发送,而不是延迟。类似于下面的函数。

function send_messages_keystroke() {
Promise.resolve()
.then(() => send_msg() )
.then(() => keyPress('ctrl-b') ) //Run subsequent line of code send_msg() if keystroke ctrl-b is pressed
.then(() => send_msg() )
.then(() => keyPress('ctrl-b') )
.then(() => send_msg() )
;
}

最佳答案

您可以将 process.stdin 置于原始模式以访问单个按键。

这是一个独立的例子:

function send_msg(msg) {
console.log('Message:', msg);
}

// To map the `value` parameter to the required keystroke, see:
// http://academic.evergreen.edu/projects/biophysics/technotes/program/ascii_ctrl.htm
function keyPress(value) {
return new Promise((resolve, reject) => {
process.stdin.setRawMode(true);
process.stdin.once('data', keystroke => {
process.stdin.setRawMode(false);
if (keystroke[0] === value) return resolve();
return reject(Error('invalid keystroke'));
});
})
}

Promise.resolve()
.then(() => send_msg('1'))
.then(() => keyPress(2))
.then(() => send_msg('2'))
.then(() => keyPress(2))
.then(() => send_msg('done'))
.catch(e => console.error('Error', e))

它会拒绝任何不是 Ctrl-B 的击键,但如果您不想要这种行为(并且只想等待第一个 Ctrl -B,例如)。

传递给keyPress的值是key的十进制ASCII值:Ctrl-A是1,Ctrl-B是2, a 是 97,等等。

编辑:正如@mh-cbon 在评论中所建议的,更好的解决方案可能是使用 keypress模块。

关于javascript - 在 node.js 中使用按键启动操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39381560/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com