рельсы, требующие загрузки для объединения «один ко многим»

#ruby-on-rails #associations #one-to-many #eager-loading

#ruby-on-rails #ассоциации #один ко многим #нетерпеливая загрузка

Вопрос:

У меня есть

 class Article < ActiveRecord::Base
  has_one :template
end
  

и

 class Template < ActiveRecord::Base
  has_many :articles
end
  

где модель шаблона имеет свойство room. Теперь я хотел бы создать список всех статей, где шаблон статей имеет определенное значение комнаты (скажем, «ванна»).

Я думал, что это делается с помощью нетерпеливой загрузки (соответственно: включает), но если я попытаюсь

 Article.includes(:template)
  

Я получаю сообщение об ошибке

 SELECT "templates".* FROM "templates" WHERE "templates"."article_id" IN ('51', '52', '53', '54')
ActiveRecord::StatementInvalid: PG::UndefinedColumn: ERROR:  column templates.article_id does not exist
LINE 1: SELECT "templates".* FROM "templates" WHERE "templates"."art...
  

Что я делаю не так?

Редактировать

вот моя schema.rb, как и просили

 # encoding: UTF-8
# This file is auto-generated from the current state of the database. Instead
# of editing this file, please use the migrations feature of Active Record to
# incrementally modify your database, and then regenerate this schema definition.
#
# Note that this schema.rb definition is the authoritative source for your
# database schema. If you need to create the application database on another
# system, you should be using db:schema:load, not running all the migrations
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
# you'll amass, the slower it'll run and the greater likelihood for issues).
#
# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema.define(version: 20160913122551) do

  # These are extensions that must be enabled in order to support this database
  enable_extension "plpgsql"

  create_table "articles", force: :cascade do |t|
    t.string   "title"
    t.text     "details"
    t.integer  "value_eur"
    t.integer  "deposit_eur"
    t.integer  "location_id"
    t.integer  "user_id"
    t.datetime "created_at",    null: false
    t.datetime "updated_at",    null: false
    t.string   "picture"
    t.float    "rate_eur"
    t.string   "rate_interval"
    t.integer  "template_id"
    t.integer  "quality"
  end

  add_index "articles", ["location_id"], name: "index_articles_on_location_id", using: :btree
  add_index "articles", ["template_id"], name: "index_articles_on_template_id", using: :btree
  add_index "articles", ["user_id"], name: "index_articles_on_user_id", using: :btree

  create_table "locations", force: :cascade do |t|
    t.string   "street_and_no"
    t.string   "postcode"
    t.string   "city"
    t.string   "country"
    t.integer  "user_id"
    t.datetime "created_at",    null: false
    t.datetime "updated_at",    null: false
    t.float    "latitude"
    t.float    "longitude"
  end

  add_index "locations", ["user_id"], name: "index_locations_on_user_id", using: :btree

  create_table "templates", force: :cascade do |t|
    t.string   "title"
    t.text     "details_hint"
    t.float    "rate_eur"
    t.string   "rate_interval"
    t.string   "picture"
    t.datetime "created_at",    null: false
    t.datetime "updated_at",    null: false
    t.string   "room"
  end

  create_table "users", force: :cascade do |t|
    t.string   "email",                  default: "", null: false
    t.string   "encrypted_password",     default: "", null: false
    t.string   "reset_password_token"
    t.datetime "reset_password_sent_at"
    t.datetime "remember_created_at"
    t.integer  "sign_in_count",          default: 0,  null: false
    t.datetime "current_sign_in_at"
    t.datetime "last_sign_in_at"
    t.inet     "current_sign_in_ip"
    t.inet     "last_sign_in_ip"
    t.datetime "created_at",                          null: false
    t.datetime "updated_at",                          null: false
    t.string   "role"
    t.string   "nickname"
    t.string   "firstname"
    t.string   "lastname"
    t.string   "phoneno"
    t.boolean  "showemail"
    t.boolean  "showphone"
  end

  add_index "users", ["email"], name: "index_users_on_email", unique: true, using: :btree
  add_index "users", ["nickname"], name: "index_users_on_nickname", unique: true, using: :btree
  add_index "users", ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true, using: :btree

  add_foreign_key "articles", "locations"
  add_foreign_key "articles", "templates"
  add_foreign_key "articles", "users"
  add_foreign_key "locations", "users"
end
  

Комментарии:

1. Судя по ошибке, похоже, что в базе данных нет столбца article_id, который потребовался бы для выравнивания двух, можете ли вы опубликовать свой файл schema.rb в папке db?

2. @rockwell-rice отредактировал вопрос и поместил туда мой файл schema.rb

3. @RockwellRice Вы правы, я кое-что неправильно понял о различиях has_one и belongs_to . Изменение has_one на belongs_to решило проблему. Большое спасибо

4. рад, что это помогло, я опубликовал ответ, чтобы его можно было пометить как ответ, примите его, если у вас будет шанс.

Ответ №1:

В вашей таблице шаблонов нет столбца article_id в соответствии с опубликованным вами schema.rb, поэтому вам нужно будет создать эту ссылку.

Изменить

 has_one :template 
  

в модели статей для

 belongs_to :template