clojure lein(读取行)stdin 问题
所以常规的 clojure repl 工作正常,(read-line)
收集输入,然后回显它。但是,使用 lein repl 永远不会回显任何输入字符,也不允许我从任何 stdin 读取命令返回。
我确信这与重新绑定有关,但想知道是否有解决方法/修复?
谢谢。
So regular clojure repl works fine, (read-line)
collects input, then echos it. Using lein repl
though, never echoes any input characters, nor does it ever allows me to return from any stdin reading commands.
I'm sure it has something to do with rebinding in, but was wondering if there is a workaround/fix?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是由于 ant 中的一个错误造成的;它阻止使用它启动的子进程的标准输入流。但是 telnet 技巧应该可以工作,因为 lein repl 启动了一个套接字 repl 服务器;它在这里工作得很好。
This is due to a bug in ant; it prevents the stdin stream from the subprocess it launches from being used. But the telnet trick should work since lein repl launches a socket repl server; it works fine here.
通过 telnet 连接到 REPL。
Connect to the REPL via telnet.
这现在对我有用:
使用 ns swank.core 中的宏 with-read-line-support 包装你的 read-line 调用 [自 swank-clojure 1.4+ 我相信]:
感谢 Tavis Judd 的修复。
This works for me now:
Wrap your read-line calls with the macro with-read-line-support which is in ns swank.core [since swank-clojure 1.4+ I believe]:
Thanks to Tavis Judd for the fix.