在自定义视图中使用疯狂助手

发布于 2024-11-18 12:06:13 字数 237 浏览 3 评论 0原文

我将 spree_application.html.erb 模板文件替换为我的 自己的,但我喜欢使用 spree 的辅助方法,例如

<%= breadcrumbs(@taxon) %> 
<%= flash_messages %> 

但我收到以下错误: #<#:0xb6525eac> 的未定义方法“breadcrumbs” 我应该怎么办? 谢谢!

I replaced the spree_application.html.erb template file with on of my
own but I like to use spree's helper methods such as

<%= breadcrumbs(@taxon) %> 
<%= flash_messages %> 

But I receive the following error:
undefined method `breadcrumbs' for #<#:0xb6525eac>
What should I do?
Thanks!

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

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

发布评论

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

评论(1

小梨窩很甜 2024-11-25 12:06:13

可能是因为面包屑方法位于 taxons_helper 中,所以如果您想使用它,请覆盖taxons_helper并将breadcrumbs方法添加到您的应用程序控制器中。

May be because the breadcrumbs method is in the taxons_helper so if you want to use it override the taxons_helper and add the breadcrumbs method to your application controller.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文