带有外键的活动记录查询

问题描述 投票:0回答:1

我有一个类别模型:

class Category < ApplicationRecord
    has_many :products
end

使用此数据库模式:

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

和产品型号:

class Product < ApplicationRecord
  belongs_to :category
end

使用此数据库模式:

create_table "products", force: :cascade do |t|
    t.string "origin"
    t.string "name"
    t.text "description"
    t.bigint "category_id"
    t.datetime "created_at", null: false
    t.datetime "updated_at", null: false
    t.index ["category_id"], name: "index_products_on_category_id"
  end

在我的种子中,我只有2个类别(“咖啡”和“设备”),并且某些产品已播种:咖啡。我试图在我的家庭控制器中进行一个简单的活动记录查询,以仅选择具有咖啡类别名称的产品。我尝试过:

@coffees = Product.joins(:category).where("name = 'coffee'")

@coffees = Product.joins(:category).where("category.name = 'coffee'")

@coffees = Product.where("product.category.name == 'coffee' ")

但是它们都不起作用,我无法在主视图上显示该阵列。有什么主意吗?

sql activerecord foreign-keys ruby-on-rails-5
1个回答
0
投票

您使用了错误的表名。没有名为“ category”的表。

我认为应该这样:

@coffees = Product.joins(:category).where("categories.name = 'coffee'")
© www.soinside.com 2019 - 2024. All rights reserved.