1

CRUD是:

  • 指数
  • 创造
  • 新的
  • 编辑
  • 节目
  • 更新
  • 破坏
  • 删除
4

1 回答 1

1

在 config/routes.rb 文件中,添加以下内容:

resources: comments  # its aplural version of an existing model

rails 将提供一些方法来链接到控制器中的方法,您可以通过在终端中键入来找到这些方法:

rake routes

使用第一列的输出并添加“_path”或“_url”

这些可以在 rails "link_to" 方法中使用,例如:

link_to "this is the text for the link", new_comment_path
于 2013-05-27T13:49:02.073 回答