我一直在我的应用程序分支中使用 wterm,但现在猜测已经很老了并且已经停产了。我尝试迁移到 jquery-terminal,但我不太了解如何配置。
有一个简单的模式可以配置吗?并且只包括我允许的命令?
我目前的功能:
$('#wterm').terminal(function(command, term) {
term.pause();
if(command != ""){
$.post('<?php echo $this->baseUrl, '/bconsole/cmd' ?>', {'bcommand': command, 'command': cmd }).then(function(response) {
term.echo(response,{raw:true}).resume();
});
} else{
term.exec('clear').resume();
} //end if
},
{
greetings: welcome,
prompt: 'bconsole> ',
height: 400,
onBlur: function(){
return false;
}
}
);