带有 gretel gem 的面包屑在 Heroku 上的开发环境中工作但不在生产环境中工作
breadcrumbs with gretel gem working on dev environment but not working on production environment on Heroku
我在一个托管在 Heroku 上的网站上工作,我使用 gretel gem 制作面包屑。
面包屑在开发环境中运行良好,但在 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
抱歉我的英语不好...
嗯。我自己回答。
正在阅读 slim 文档。
我发现我必须使用 == 符号而不是 = 来避免转义 html 代码。
我在一个托管在 Heroku 上的网站上工作,我使用 gretel gem 制作面包屑。
面包屑在开发环境中运行良好,但在 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
抱歉我的英语不好...
嗯。我自己回答。
正在阅读 slim 文档。 我发现我必须使用 == 符号而不是 = 来避免转义 html 代码。