Rails ActionController::favicon 的UnknownAction

发布于 2024-11-09 16:27:20 字数 342 浏览 0 评论 0原文

我的 app/views/layouts/application.html.erb 中有以下行,

<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon" />

这会以某种方式导致日志中出现以下错误消息,并且未加载图标。这种情况仅发生在某些路径上,而不发生在整个应用程序上。

ActionController::UnknownAction (No action responded to images. Actions: 

如何摆脱它?

I have following line in my app/views/layouts/application.html.erb

<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon" />

This somehow causes following error message int he logs and the favicon is not loaded. This happens only for certain paths not for the whole application.

ActionController::UnknownAction (No action responded to images. Actions: 

How to get rid of it ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

初见终念 2024-11-16 16:27:20

请改用 favicon_link_tag 帮助程序:

<%= favicon_link_tag "/favicon.ico" %>

只需确保您的 favicon.ico 文件位于公共文件夹中...并且不要忘记正斜杠。

Use the favicon_link_tag helper instead:

<%= favicon_link_tag "/favicon.ico" %>

Just make sure your favicon.ico file is in the public folder... and do not forget the forward slash.

夏日落 2024-11-16 16:27:20

相信我..尝试在图像前加上斜线,这应该可以工作

<link rel="shortcut icon" href="/images/favicon.ico" type="image/x-icon" />

Believe me.. try prefixing images with a slash and this should work

<link rel="shortcut icon" href="/images/favicon.ico" type="image/x-icon" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文