从另一个模型调用Rails模型是否被视为最佳实践? (以下代码):
#models/user.rb
def get_pending_requests(user_id)
Friend.where("friend_id = ? AND approved = ?", user_id, false)
end
我发现执行此操作的RSpec / FactoryGirl测试有点尴尬,而不是在Controller中执行这些操作。
答案 0 :(得分:5)
我可以建议采用不同的方法吗?假设您的模型设置如下:
class Friend < ActiveRecord::Base
belongs_to :user
scope :pending, -> { where(approved: false) }
end
class User < ActiveRecord::Base
has_many :friends
def pending_requests
friends.pending
end
end
因此,您在朋友上创建一个名为pending的范围。然后,您可以在朋友关系中使用该范围。我发现这是一种更标准的方法。