如何清除链轮缓存?

发布于 2025-01-04 17:31:12 字数 163 浏览 0 评论 0原文

当 Sprockets 对象编译失败(由于 CoffeeScript 或 SASS 中的语法错误)时,修复错误后无法重新编译,因为它显示“文件已是必需的”。

为了使链轮对象正常工作,我必须销毁并重新创建它。我想知道是否有人知道是否有办法告诉 Sprocket 对象在内部重置自身,以免遇到此问题。

When a Sprockets object compilation fails (due to a syntax error in CoffeeScript or SASS), it cannot recompile after the error is fixed because it says "file is already required."

In order to get the Sprockets object to work, I have to destroy and re-create it. I was wondering if anyone knew if there was a way to tell the Sprocket object to internally reset itself as to not run into this issue.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

南城追梦 2025-01-11 17:31:12

rake tmp:cache:clear 删除临时缓存目录。

rake tmp:cache:clear deletes the temporary cache directory.

匿名的好友 2025-01-11 17:31:12

就我而言,以下命令有效:

rake tmp:clear

In my case, the following command worked:

rake tmp:clear
凡尘雨 2025-01-11 17:31:12

应该是:

Rails.application.assets.cache.clear

但仅 此方法在 master 分支中,甚至不在 测试版

更新:在 4.0.0 中添加。测试版5

It should be:

Rails.application.assets.cache.clear

but this method only in master branch and not even in beta.

Update: added in 4.0.0.beta5.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文