Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
class Article < ActiveRecord::Base
  has_many :comments
end

class Comment < ActiveRecord::Base
   belongs_to :article
   validates_presence_of :body
   validates_presence_of :author_name
end

If I leave the author_name as blank then I am getting proper validation error. All good.

>> Article.first.comments.create(:body => 'dummy body').errors.full_messages
=> ["Please enter your name"]

Look at this example.

>> a = Article.first
>> a.comments.create(:body => 'dummy body')
>> a.errors.full_messages
["Comments is invalid"]

I send instance of article (a in this case) to view layer. I was wondering how do I get access to the pricise error 'please enter your name' from instance object a.

share|improve this question

2 Answers

up vote 3 down vote accepted

You could assign the newly created comment to it's own variable and send that to the view as well.

@article = Article.first  
@comment = @article.comments.create(:body => 'dummy body')

You can then use error_messages_for 'article', 'comment' to display errors for both objects. I don't know if there is a way to automatically display the individual child errors instead of the "X is invalid"...

share|improve this answer

Assuming the view is the form that attempted to create the object, you should be able to do exactly what you did above:

@article.errors.full_messages

Other views that just have access to the object (such as the index or show views) will not have any errors because that array is only filled when attempting to create or update the article.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.