I have some code in my Item model (very loosely) like such:
def author_id=(xyz)
book = Book.find_by_author_id(xyz)
book.author_id = self.id
end
self.id doesn’t seem to be set though, when creating a new record…Any ideas?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
id is set to record only after it is saved to database. So you could add a simple callback here