我只是在rails中创建一个简单的新动作,但是当我在浏览器中查看它时出现此错误:
undefined method `render' for #<Template:0x9e9993c>
新方法是:
def new
@template = Template.new
end
我在文件夹中有new.html.erb!这个问题是什么?
答案 0 :(得分:13)
问题是您正在尝试将自定义对象分配给@template
实例变量,但@template
是一个内部变量,应该为当前操作保存Rails模板的实例。
使用其他变量名称
def new
@tpl = Template.new
end