如何在SASS中制作资产?

发布于 2024-10-23 16:50:35 字数 172 浏览 1 评论 0原文

在 Rails 中,当我们在页面中包含图像时,我们使用 image_tag 帮助器,它生成 标记并在页面添加 ?nnnnn其 url 末尾,这样每次更新图像时旧版本都不会卡在客户端的缓存中。 SASS 需要同样的东西,但我在文档中找不到它。

In Rails, when we include an image into the page we use image_tag helper, which generates <img> tag and adds ?nnnnn at the end of its url, so that every time an image is updated the old version would not be stuck in the cache on the client side. Same thing for SASS needed, but I can't find it in the documentation.

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

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

发布评论

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

评论(2

笑,眼淚并存 2024-10-30 16:50:36

您应该使用 sass-rails gem https://github.com/rails/sass-rails< 提供的帮助程序/a>,(滚动到资产助手)。
任何时候您需要引用资产(图像/音频/视频/字体)

主体时,都可以从 sass 文件内部使用这些助手{
背景: asset_path($relative-asset-path, $asset-class);
注意

:由于 bug,image_url("...") 在 Rails 3.1.0.rc4 上不起作用,但您仍然可以使用 asset_url 和 asset_path。

You should be using helpers provided by sass-rails gem https://github.com/rails/sass-rails, (scroll to Asset Helpers).
These helpers can be used from inside sass files any time you need to reference an asset (image/audio/video/font)

body{
background: asset_path($relative-asset-path, $asset-class);
}

Note: image_url("...") is not working on Rails 3.1.0.rc4 due to a bug, but you can still use asset_url and asset_path.

凉薄对峙 2024-10-30 16:50:36

使用 stylesheet_link_tag 将为您完成此操作,就像 image_tag 一样。这也适用于通过 javascript_include_tag 链接的 JavaScript 文件。

Using stylesheet_link_tag will do this for you, just the same as image_tag does. This also applies to JavaScript files linked in with javascript_include_tag.

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