1
我在Heroku上託管的網站工作,我使用gretel gem製作麪包屑。麪包屑與gretel gem在開發環境上工作,但不能在Heroku上的生產環境上工作
麪包屑工作正常開發環境,但在Heroku這不起作用。
在Heroku上的麪包屑是這樣的:
我沒有想法,爲什麼這不是在Heroku工作。如果這個工作在開發環境上非常好
有什麼想法嗎?
麪包屑代碼:
crumb :root do
link "Galeria", root_path
end
crumb :category do |category|
link "Categoria: #{category.name.titleize}", category
parent :root
end
crumb :picture do |picture, category|
link "Viendo la imagen: #{picture.title.titleize}"
parent :category, category
end
佈局與麪包屑:
.container
= breadcrumbs pretext: "Estas en: ", display_single_fragment: true, style: :bootstrap
對不起我的英文不好...