fields_for not rendering - rails 3

大兔子大兔子 提交于 2019-11-30 05:56:46

In rails 3, you should use <%= instead of <% for form_for and fields_for . See if that helps.

priyanka Ukirde

In your list controller in action new you have to add

 def new
   @list = List.new
   3.times{ 
   @tasks = @list.tasks.build
   }
end
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!