ruby-on-rails – 未定义的方法`render’!

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 未定义的方法`render’!前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我只是在rails中创建一个简单的新动作,但当我在浏览器中查看它时,我收到此错误
undefined method `render' for #<Template:0x9e9993c>

方法是:

def new
    @template = Template.new
  end

我在文件夹中有new.html.erb!有什么问题 ?

解决方法

问题是您正在尝试将自定义对象分配给@template实例变量,但@template是一个内部变量,应该为当前操作保存Rails模板的实例.

使用其他变量名称

def new
  @tpl = Template.new
end
原文链接:https://www.f2er.com/ruby/270538.html

猜你在找的Ruby相关文章