gpt4 book ai didi

ruby-on-rails - 未定义的方法 `update_attributes' ?

转载 作者:可可西里 更新时间:2023-11-01 09:57:05 27 4
gpt4 key购买 nike

为什么会出现此错误?我没主意了。

# 的未定义方法“update_attributes”

代码:

exists = Vote.where(comment_id: @comment.id).exists?
if exists
update_vote = Vote.where(comment_id: @comment.id)
update_vote.update_attributes(value: 5)
redirect_to :back
else

最佳答案

你想特别获取一条记录,所以告诉它:

update_vote = Vote.where(comment_id: @comment.id).first

但如果没有匹配项,这段代码很容易出错,请注意。

关于ruby-on-rails - 未定义的方法 `update_attributes' ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21392311/

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