Вопрос

I have a simple problem, related to associations. I have a model for book, that has_one reservation. Reservation belongs_to book.

I want to make sure in the create method of reservations controller that a book is not reserved already when a reservation is made. In other words, I need to check if any other reservation exists for that book. How do i do that?

EDIT: Aaaand i made it, thanks everyone for the tips, learned some new stuff. When i tried offered solutions, I got no_method errors, or nil_class etc. That got me thinking, that the objects I'm trying to work on simply don't exist. Krule gave me the idea to use book.find, so i tried working with that. Ultimately i got it working with:

book=Book.find_by_id(reservation_params[:book_id])
unless book.is_reserved?

Thanks everybody for your anwsers, I know it's basic stuff but i learned a lot. Cheers!

Это было полезно?

Решение 3

#app/models/book.rb

def is_reserved?
  !self.reservation.nil?
end

# Somewhere else
book = Book.find(id)
book.is_reserved?

Другие советы

How about:

self.reservation.present?

This should return true if an association exists.

Little bit performance gain can be obtained if you use

#app/models/book.rb
def is_reserved?
  Reservation.exists?(book_id: id)
end

#somewhere else
book = Book.find(id)
book.is_reserved?

Simply, use:

# book = Book.first
book.reservation.nil?   # returns true if no reservation
                        # is associated with this book
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top