gpt4 book ai didi

ruby-on-rails - ROR 事件记录在哪里检查

转载 作者:太空宇宙 更新时间:2023-11-03 18:16:07 25 4
gpt4 key购买 nike

我正在使用 ruby​​ on rails 并尝试检查数据库中的 SIGNIN

这是我的代码模型代码

def self.signIn(form)
user=Users.where(username: form[:username], password:form[:password])
return user
end

我的 Controller 代码是

def sigin_action
@hello = Users.signIn(params)
render :text => @hello
end

但输出总是'#'符号,这是什么问题,我搜索了很多但找不到解决方案

最佳答案

ActiveRecord#where返回一个关系对象。要访问对象,您可以循环,或者如果您只需要一条记录,请调用 first

Users.where(username: form[:username], password: form[:password]).first

关于ruby-on-rails - ROR 事件记录在哪里检查,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25842855/

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