我想写这个:
post_view.id = 1
Comment.find(:all, :conditions => "post_parent_id = 'post_view.id'").size
第二个语句不起作用,因为这不是编写post_view.id
的合适方式。
Anyoone知道正确的语法吗?
答案 0 :(得分:1)
post_view.id = 1
Comment.find(:all, :conditions => ["post_parent_id = ?", post_view.id]).size