我試圖設置我的開發環境以在本地主機中存儲和獲取圖像。 我已經設法將圖像保存在正確的路徑上,但我找不到加載頁面並從資產管道中檢索它們的方法。如何在本地主機上使用rails plus回形針和霧
我有這個在我的模型:
has_attached_file :cover, :styles => {:small => '80x80'},
:storage => :fog,
:fog_credentials => {:provider => "Local",
:local_root => "#{Rails.root}/public"},
:fog_directory => 'system/migos',
:fog_host => "http://localhost:3000/assets",
:default_url => '/assets/missing/:attachment/missing_:class_:style.png',
:path => ':rails_env/:class/:attachment/:id_partition/:style/:filename'
和文件被正確保存到: 公共/系統/ migos /開發/工作組/涵蓋/ 000/000/011 /小/標誌。 PNG
當加載頁面時,它會嘗試獲取從這裏的文件: /assets/localhost/development/workgroups/covers/000/000/011/small/logo.png?1346598225 和失敗。
我在這裏錯過了什麼?
你能告訴我你用來檢索圖像的代碼嗎? –