如何在 Ruby 中使用 sass-rails 助手?
从 Github 页面来看,似乎可以使用 Sass 助手 (asset_path、
asset_url
、image_path
等)在 Ruby 中,但我不知道如何实现。
我需要为回形针附件设置 default_url
并希望使用资产管道中的一项资产。
From the Github page it would seem that one can use the Sass helpers (asset_path
, asset_url
, image_path
etc.) in Ruby but I can't figure out how.
I need to set the default_url
for a Paperclip attachment and want to use one of my assets from the asset pipeline for that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 SCSS 文件中使用 sass 助手,但不能在其他地方使用它们。在这些情况下,您需要使用常规 asset_path 和 image_tag 帮助程序。
You can use the sass helpers in SCSS files, but you cannot use them elsewhere. In those cases you need to use the regular asset_path and image_tag helpers.