gpt4 book ai didi

authentication - 如何从模型访问设备 current_user

转载 作者:行者123 更新时间:2023-12-03 18:06:45 27 4
gpt4 key购买 nike

刚开始使用我的应用程序身份验证设计开发,但是在从模型访问 current_user 时遇到了麻烦。我从 Controller 访问它没有问题。

对于我的场景,我需要获取当前用户 ID 以跟踪谁编辑了博客文章,我使用 before_save 过滤器保存了用户 ID。

感谢你的帮助!

谢谢

最佳答案

您只能在参数中传递它。

class SomeModel 
def my_nifty_method(user)
end
end

在 Controller 中:
class SomeModelsController < ApplicationController
def some_method
sm = SomeModel.new
sm.my_nifty_method(current_user)
end
end

关于authentication - 如何从模型访问设备 current_user,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4854019/

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