【发布时间】:2012-08-31 12:57:45
【问题描述】:
有没有办法在回形针中定义样式别名(相同的转换,相同的文件路径)?
# in the model
has_attached_file :image, {
:styles => {
:thumb => "90x90>",
:small => :thumb
}
[...]
}
# in the application
model.image.url(:thumb)
=> 'path/to/image/thumb.jpg'
model.image.url(:small)
=> 'path/to/image/thumb.jpg'
我目前正在重构一个有很多重复样式的应用程序。我希望它定义一次,而不破坏接口。
【问题讨论】:
-
我会通过覆盖演示者中的方法来做到这一点
-
稍后我会寻找更好的解决方案 :)
-
相同。我想知道我是否错过了回形针文档中的配置字段,但似乎这不是受支持的功能。演示者似乎是最合乎逻辑的解决方案:)
-
是的,但这会很麻烦:委托等...我们可以做得更好:)
-
你用什么版本的回形针?