我正在使用 pusher 和 xtermjs。对于像这样的命令的小输出,w
它free -m
可以正常工作。对于命令的大输出,ps -aux
它不起作用。输出显示在浏览器控制台中,但不在 xtermjs 输出 div 中。
这是我的推送事件处理程序。
this.term = new Terminal({
debug: true,
allowTransparency: true,
applicationCursor: true,
applicationKeypad: true,
normalFontWeight: 100,
fontSize: 14,
cursorBlink: true,
cursorStyle: 'block', // “block” | “underline” | “bar” *
})
this.term.open(document.getElementById(this.outputDiv))
this.term.fit()
let screenObject = this
let terminalObj = this.term
window.UserChannel.bind('com.testing.command.result', function (data) {
// console.log(data)
let text = data.payload.replace(/\n/g, '\r\n')
terminalObj.writeln(text)
// terminalObj.fit()
// screenObject.hideHelpers()
})