Rails 3:控制器内的 @template 变量为零
我已经开始使用 Rails 3 beta3,我发现控制器内的 @template 变量为零。如何在控制器内调用辅助方法?谢谢
i've started using rails 3 beta3 and I have see that the @template variable inside controllers is nil. How I can call helpers methods inside a controller? Thx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
view_context
方法而不是@template
。这是因为 Rails 3 中引入了新的
AbstractController
。您可以在这里阅读更多信息:
http://apidock.com/rails/AbstractController/Rendering/view_context
Use the
view_context
method instead of@template
.This is because in Rails 3 the new
AbstractController
was introduced.You can read more here:
http://apidock.com/rails/AbstractController/Rendering/view_context