我将@booking与用户(称为“ booker”)一起保存。在@ booking.save之后,我可以在命令行中检索@ booking.booker,以显示用户的所有属性(电子邮件,密码,ID等)。但是,在离开create方法之后,无法检索它(例如,从显示中):@ booking.booker = nil。 我猜这是由于我的预订模型中的一个错误引起的:我有belongs_to和has_many_through。如果错误来自此处,如何解决而又不必更改所有数据库?
booking_controller.rb
class BookingsController < ApplicationController
before_action :set_booking, only: [:show, :edit, :update ]
before_action :set_booking_format, only: [:destroy ]
def index
end
def my_bookings
@bookings = BookingPolicy::Scope.new(current_user, Booking).scope.where(booker: current_user)
end
def show
authorize @booking
end
def new
@garden = Garden.find(params[:garden_id])
@booking = Booking.new
authorize @booking
end
def create
@garden = Garden.find params[:garden_id]
@booking = @garden.bookings.build(booker: current_user)
authorize @booking
if @booking.save
redirect_to garden_booking_path(@booking, current_user)
end
end
def update
end
private
def set_booking
@booking = Booking.find(params[:id])
end
def set_booking_format
@booking = Booking.find(params[:format])
end
def booking_params
params.require(:booking).permit(:garden_id, :booker_id, :date)
end
end
booking.rb
class Booking < ApplicationRecord
belongs_to :garden
belongs_to :booker, class_name: "User"
end
garden.rb
class Garden < ApplicationRecord
belongs_to :user
has_many :bookings, dependent: :destroy
end
user.rb
class User < ApplicationRecord
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :validatable
has_many :gardens
has_and_belongs_to_many :bookings
end
schema.rb
create_table "bookings", force: :cascade do |t|
t.date "date"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.bigint "garden_id"
t.integer "booker_id"
t.index ["garden_id"], name: "index_bookings_on_garden_id"
end
create_table "gardens", force: :cascade do |t|
t.string "title"
t.text "details"
t.integer "surface"
t.text "address"
t.bigint "user_id"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.text "availabilities"
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.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.boolean "admin", default: false
t.index ["email"], name: "index_users_on_email", unique: true
t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
end
add_foreign_key "bookings", "gardens"
end
答案 0 :(得分:0)
在您的模型中,user.rb:
class User < ApplicationRecord
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :validatable
has_many :gardens
has_and_belongs_to_many :bookings
end
:bookings
关联应为has_many.
,您未使用联接表。
请参阅:https://guides.rubyonrails.org/association_basics.html#the-has-and-belongs-to-many-association
habtm关联的belongs_to
部分正在寻找外键,该外键不存在。您可以在移至其他控制器操作之前检索@booking.booker
,因为您根本不会访问数据库,而只是检索实例变量的关联。