gpt4 book ai didi

ruby-on-rails - 从另一个模型调用 Rails 模型

转载 作者:行者123 更新时间:2023-12-02 22:05:53 24 4
gpt4 key购买 nike

从另一个模型调用 Rails 模型是否被认为是最佳实践? (下面的代码):

#models/user.rb
def get_pending_requests(user_id)
Friend.where("friend_id = ? AND approved = ?", user_id, false)
end

我发现执行 RSpec/FactoryGirl 测试这样做有点尴尬,而不是在 Controller 中执行这些操作。

最佳答案

我可以建议一种不同的方法吗?假设您的模型设置如下:

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 on friend 的作用域。然后你可以在你的 friend 关系上使用这个范围。我发现这是一种更标准的方法。

关于ruby-on-rails - 从另一个模型调用 Rails 模型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16126558/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com