我正在对指南针中的图像使用缓存破坏:
asset_cache_buster do |http_path, real_path|
if File.exists?(real_path)
hash = Digest::MD5.file(real_path.path).hexdigest
"v=%s" % hash[0,5]
end
end
使用image_url()
将附加v
.
如何使用精灵完成相同的行为?:
@import '../images/navbar/*.png';
@include navbar-sprite;
我试过了,但抛出了罗盘语法错误:
@import image-url('../images/navbar/*.png');
我能做些什么?