undefined method `email' for nil:NilClass in Exibe the mail of table Father
问题 I have a problem, i make this atribbuition i comment model: class Comment < ActiveRecord::Base attr_accessible :comment belongs_to :post belongs_to :user and this in user model class User < ActiveRecord::Base attr_accessible :email, :password, :password_confirmation has_many :posts has_many :comments but this dont works: <% post.comments.each do |comment| %> <div id="comments" > <%= comment.user.email %> <%= comment.comment %> </div> <%end%> appear the error: undefined method `email' for nil