在我的位置模型中,我有以下内容..
has_many :location_polls
在 LocationPoll 模型中,我有以下内容。
has_many :poll_locations
现在回到位置模型,我想拒绝位置轮询,以防没有轮询位置。我怎样才能做到这一点?我尝试了以下,它没有工作..
accepts_nested_attributes_for :location_polls, :reject_if => lambda { |a| a[:poll_locations].empty? }
如果我缺少帮助您回答问题的信息,我深表歉意。我不想把这个问题弄得乱七八糟。如果需要更多信息,请告诉我。谢谢。