使用 Less.js 时如何重新加载 CSS
我可以在源代码中看到,如果您在本地主机上,它基本上会自动重新加载 css,并且我可以在 firebug 面板中看到它每秒请求 .less 文件..但是当我更改文件中的某些内容时,它不是除非我进行完全刷新,否则会在页面上更新。
我还尝试使用 less.refresh() ,如下所述:
https://github.com/ cloudhead/less.js/issues/346
但无济于事。
那么,如何在不重新加载页面的情况下重新加载 .less 文件呢?
谢谢
I can see in the source that it basically reloads css automatically if you are on localhost, and I can see in the firebug panel that it's requesting the .less file(s) every second.. but when I change something in the files it's not updated on the page unless I do a full refresh.
I also tried using less.refresh() as described here:
https://github.com/cloudhead/less.js/issues/346
But to no avail.
So, how can I reload the .less files without reloading the page?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这里找到我的问题的答案:
https://github.com/cloudhead/less.js /issues/168
基本上必须添加一个标头以防止缓存 .less 文件。
Found the answer to my question here:
https://github.com/cloudhead/less.js/issues/168
Basically had to add a header to prevent caching .less files.