我正在开发一个小型xterm.js
应用程序(刚刚开始),我想知道当用户按下回车键时如何从当前行获取文本。这是程序:
var term = new Terminal();
term.open(document.getElementById('terminal'));
term.prompt = () => {
term.write('\r\n$ ');
};
term.writeln('This is a shell emulator.');
term.prompt();
term.on('key', function(key, ev) {
const printable = !ev.altKey && !ev.altGraphKey && !ev.ctrlKey && !ev.metaKey;
if (ev.keyCode === 13) {
term.prompt();
console.log(curr_line);
var curr_line = ""
} else if (ev.keyCode === 8) {
// Do not delete the prompt
if (term.x > 2) {
curr_line = curr_line.slice(0, -1);
term.write('\b \b');
}
} else if (printable) {
curr_line += ev.key;
console.log(curr_line, ev.key)
term.write(key);
}
});
term.on('paste', function(data) {
term.write(data);
});
取自 xterm.js 主页的示例(并已修改)
如您所见,我的尝试涉及每次收到key
事件时添加一行文本(或在退格键上删除)。但是,这不起作用,因为它位于异步函数内部。
是否xterm.js
附带另一个功能,允许您获取当前行内容,或者是否有其他解决方法?我的谷歌搜索无济于事。