本文介绍了回形针中的 Default_url 因资产管道升级而中断的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用 Paperclip 并为我的一个附件设置了一个类似这样的 default_url 选项:
I'm using Paperclip and have a default_url option like this for one of my attachments:
:default_url => '/images/missing_:style.png'
资产管道显然不喜欢这样,因为目录移动了.处理这个问题的最佳方法是什么?我为这张图片设置了两种样式(:mini 和 :thumb).
The asset pipeline obviously doesn't like this since the directories moved. What's the best way to handle this? I have two styles for this picture (:mini and :thumb).
推荐答案
:default_url => ActionController::Base.helpers.asset_path('missing_:style.png')
然后把默认图片放在app/assets/images/
这篇关于回形针中的 Default_url 因资产管道升级而中断的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!