在自定义视图中使用疯狂助手
我将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可能是因为面包屑方法位于 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.