我克隆了一个sample Chortles project来测试吊桥的远程REPL功能。我可以在REPL中使用lein repl :connect http://user:pass@localhost:5000/repl
和解除引用scores
与@chortles.web/scores
进行关联,这会正确生成过去分数的向量,例如[0 0 7]
。
但是,当我连接到Light Table中的相同URL时,在解除引用scores
时会返回一个空向量。为什么Light Table没有返回scores
的已知值,即使它报告连接成功?
我对示例项目中的测试身份验证值进行了硬编码,并将Light Table所需的中间件设置添加到project.clj
:
:repl-options {:nrepl-middleware [lighttable.nrepl.handler/lighttable-ops]}