我想了解有關webapps的信息。我決定通過這樣做來學習,並選擇以(i)開始露營。它是小的&(ii)。我知道一些紅寶石。Favicon未顯示野營
圖標沒有顯示。我使用的是從其他網站取得的圖標,因此它知道它的文件格式是有效的。
這裏是控制器的代碼。
class Favicon < R '/favicon\.ico'
# Load the favicon into memory
FAVICON = File.read('favicon.ico')
def get
@headers['Content-Type'] = "image/x-icon"
FAVICON
end
end
這裏是從視圖的代碼: 我特意放置鏈接到圖標兩倍的實驗。沒有快樂。
def layout
html do
head do
title 'Custom Made Kameez'
link :rel => 'icon', :href => 'favicon.ico', :type => 'image/x-icon'
link :rel => 'shortcut icon', :href => 'favicon.ico', :type => 'image/x-icon'
link :rel => 'stylesheet', :type => 'text/css', :href => '/styles.css', :media => 'screen'
end
我已經嘗試清除我的緩存,並使用Firefox和IE,同樣的問題。
讀取文件.binread是解決方案。謝謝! – timebandit 2013-05-04 18:46:27