如何列出与某个类别相关的所有文章?

时间:2019-03-20 13:42:36

标签: ruby-on-rails

在我的RoR应用程序中,我在列出某个类别的所有项目时遇到问题。这是2种型号:

class Article < ApplicationRecord
  belongs_to :category

and 

class Category < ApplicationRecord
  has_many :articles
end

和我的类别控制器方法:

  def show
    @articles = @category.articles
    @category = Category.find(params[:id])
  end

在数据库中,我在类别和文章之间有联系:

create_table "articles", force: :cascade do |t|
    t.string "title"
    t.text "text"
    t.datetime "created_at", null: false
    t.datetime "updated_at", null: false
    t.string "category_id"
  end

  create_table "categories", force: :cascade do |t|
    t.string "name"
    t.text "desc"
    t.datetime "created_at", null: false
    t.datetime "updated_at", null: false
  end

并且在我的文章索引视图页面中,包含要在链接(“类别”)名称上显示所有类别的文章的代码

  <td>
    <% if article.category %>
      <%= link_to article.category.name, category_path %>
    <% end %>
  </td>

但是我收到错误

No route matches {:action=>"show", :controller=>"categories"}, missing required keys: [:id]

1 个答案:

答案 0 :(得分:0)

您必须提供响应id方法的categoryid对象才能生成正确的链接:

<%= link_to article.category.name, category_path(article.category) %>