2012-12-14 42 views

回答

1

在配置/ routes.rb中文件,添加以下內容:

resources: comments # its aplural version of an existing model 

和軌將提供一些方法通過在終端中輸入鏈接到你的控制器的方法,你可以找到這些方法:

rake routes 

與輸出使用的第一列,並添加「_path」或「_url」

那些可以在軌道「的link_to」方法中使用,例如:

link_to "this is the text for the link", new_comment_path 
相關問題