0

我的模型中有这个。
但是,该模型用作多态模型,我希望有不同的条件。
如果我在控制器中执行此操作,我该如何编写代码?

模型/comment.rb

validates_length_of :body, 
                    :within => 10..100, 
                    :message => "must be between 10 to 100 characters"

更新:

我只想在社区模型在评论模型中创建评论时使用此验证条件。评论模型是多态的!它有commentable_type 和commentable_id

4

3 回答 3

4

不,你不能在控制器中做这样的事情。在您的模型中使用条件或将其放入社区模型中。

validates_length_of :body, 
                    :within => 10..100, 
                    :message => "must be between 10 to 100 characters", :if => "community?"

  def community?
    return self.commentable_type == "Community"
  end
于 2013-01-25T06:30:38.697 回答
0

您必须在模型中执行此操作

于 2013-01-25T06:32:31.470 回答
0

在你的模型中,

validates_length_of :body,
                    :when => [ :comment ],
                    :within => 10..100, 
                    :message => "must be between 10 to 100 characters"

你可以使用:unlesslike ( :unless => Community.new { |a| a.comment? })

链接将帮助您根据需要理解和编辑。这只是idea为了解决您的问题。

于 2013-01-25T09:38:36.040 回答