4

我正在使用 lein cljsbuild 并想找到一种方法来重新加载我的编译文件而不刷新浏览器。从我的浏览器连接的 REPL 中是否有内置方法可以做到这一点?

4

1 回答 1

0

使用browser-repl可以获得我认为您所要求的大部分内容。从网站:

A browser-connected REPL works in much the same way as a normal REPL: 
forms are read from the console, evaluated and return values are printed. 
A major and useful difference from normal REPL usage is that 
all side-effects occur in the browser.

这会加载一个页面,然后使该页面等待来自 repl 的指令。这样,当您重新加载缓冲区时,页面将更改为匹配。

于 2013-02-04T21:32:13.870 回答