ArgumentError:Update_Attribute方法

时间:2019-01-19 23:00:51

标签: ruby-on-rails model update-attributes argument-error

我正在创建一个定期活动应用程序,某些用户(主持人)可以安排每周定期活动(直播),其他用户(查看者)可以关注他们。结果是个性化的每周日历,其中详细说明了所有随后的主持人活动的开始和结束时间。

enter image description here

但是,由于观众可以跟随无数的彩带,因此生成的日历看起来像是一团糟。因此,我在关系表中添加了一个布尔属性,该属性指示该关系是否已被收藏。

  create_table "relationships", force: :cascade do |t|
    t.integer "follower_id"
    t.integer "followed_id"
    t.datetime "created_at", null: false
    t.datetime "updated_at", null: false
    t.boolean "favorited", default: false
    t.index ["followed_id"], name: "index_relationships_on_followed_id"
    t.index ["follower_id", "followed_id"], name: "index_relationships_on_follower_id_and_followed_id", unique: true
    t.index ["follower_id"], name: "index_relationships_on_follower_id"
  end

通过这种方式,观看者将拥有第二个个性化日历,该日历将仅显示喜欢的彩带活动。

我已经有了一个跟随和取消关注的方法,可以成功创建和销毁查看器和流媒体之间的关系,但是我无法成功地将现有关系从不喜欢的关系更新为喜欢的关系。

test "should favorite and unfavorite a streamer" do
    yennifer = users(:yennifer)
    cirilla = users(:cirilla)
    yennifer.follow(cirilla)
    yennifer.favorite(cirilla)     #user_test.rb:151
end

测试套件返回以下错误,我无法确定缺少的参数是什么。

["test_should_favorite_and_unfavorite_a_streamer", #<Minitest::Reporters::Suite:0x0000000006125da8 @name="UserTest">, 0.16871719993650913]
 test_should_favorite_and_unfavorite_a_streamer#UserTest (0.17s)
ArgumentError:         ArgumentError: wrong number of arguments (given 1, expected 2)
            app/models/relationship.rb:11:in `favorite'
            app/models/user.rb:124:in `favorite'
            test/models/user_test.rb:151:in `block in <class:UserTest>'

  27/27: [=================================] 100% Time: 00:00:01, Time: 00:00:01

Finished in 1.82473s
27 tests, 71 assertions, 0 failures, 1 errors, 0 skips

User.rb

# Follows a user
def follow(other_user)
    active_relationships.create(followed_id: other_user.id)
end

# Unfollows a user
def unfollow(other_user)
    active_relationships.find_by(followed_id: other_user.id).destroy
end

def favorite(other_user)
    active_relationships.find_by(followed_id: other_user.id).favorite     #user.rb:124
end

def unfavorite(other_user)
    active_relationships.find_by(followed_id: other_user.id).unfavorite
end

Relationships.rb

def favorite
    update_attribute(favorited: true)     #relationship.rb:11
end

def unfavorite
    update_attribute(favorited: false)
end

有人可以帮助我确定缺少的论点并解决此问题。谢谢。

1 个答案:

答案 0 :(得分:0)

关于此答案的第一个评论是正确的,所以我不知道为什么这个人发表评论而不是回答。 update_attribute需要两个参数,而您要传递一个哈希参数。您的“收藏夹”方法等效于 update_attribute({favorited: true})当您真正想要update_attribute(:favorited, true)