gpt4 book ai didi

ruby - 我如何通过将current_user传递给Scope来确保它,从而仅给我关联关系数据

转载 作者:行者123 更新时间:2023-12-03 08:54:10 24 4
gpt4 key购买 nike

在代码中,我在NotificationsController中具有Index方法

def index  
@notifications = Notification.role_ids_of_user(current_user).notifications_order_by_desc.page(params[:page])
# If i passed nil in place of current_user there should be some Error Handling How it Will done
end

在Notification.rb中
scope :role_ids_of_user, ->(current_user) { where(:role_id => current_user.pluck(:id),:state => "published") }

我想要一个可以处理Current_user身份验证的错误处理

最佳答案

在模型notification.rb中,您可以执行以下操作,而不是单行范围:

def self.role_ids_of_user(current_user)
if current_user
where(:role_id => current_user.id,:state => "published")
else
# throw your error or do whatever here
end
end

关于ruby - 我如何通过将current_user传递给Scope来确保它,从而仅给我关联关系数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31674053/

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