“cordova run ios”终端后没有回显键盘输入

使用Cordova 4.1.2.使用以下方法在iPad上成功运行项目后:

cordova run ios

并使用kill或safequit命令退出LLDB,终端窗口将不再回显键盘输入.

是否有一个shell命令我可以进入以恢复终端窗口的正常功能?目前我必须在测试我的cordova应用程序后退出终端并开始新的终端.

最佳答案 似乎其中一个由cordova运行ios运行的脚本正在关闭终端回声.终端设置之前:

~>stty
speed 9600 baud;
lflags: echoe echoke echoctl pendin
iflags: iutf8
oflags: -oxtabs
cflags: cs8 -parenb

之后:

speed 9600 baud;
lflags: -icanon -iexten -echo echoe echoke echoctl
iflags: inlcr iutf8
oflags: -oxtabs
cflags: cs8 -parenb
dsusp   eof     lnext   reprint status  werase
<undef> <undef> <undef> <undef> <undef> <undef>  

我已经能够解决此问题,在LLDB退出后小心地键入以下内容以恢复键盘回声:

stty echo
点赞