引发ArgumentError:错误的参数数目(1给出,预计2)Update_Attribute方法

2019-10-30 13:16发布

我创建重复发生的事件的应用程序,其中某些用户(横幅)可以安排每周定期事件(流)和其他用户(观众)可以跟着他们。 其结果是一个个性化的周历细节时都遵循幡事件的开始和结束。

然而,因为观众可以跟随幡无限多的,因此所产生的日历看起来像一个热一塌糊涂。 所以我加了一个布尔属性的关系表表示的关系是否已被收藏。

  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

这样一来,观众将有第二个个性化的日历,将只显示最爱的飘带事件。

我已经有一个跟踪和取消关注方法,成功地创建和销毁观众和流光之间的关系,但我无法成功地更新现有的关系从unfavorited到收藏。

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

是否有人可以帮助我识别缺少的参数和解决这个问题。 谢谢。

Answer 1:

这个答案的第一个评论是正确的,所以我不知道为什么这个人张贴评论,而不是答案。 update_attribute有两个参数,并且您传递一个哈希的说法。 你的“最爱”的方法是等效update_attribute({favorited: true})当你真的想update_attribute(:favorited, true)



文章来源: ArgumentError: wrong number of arguments (given 1, expected 2) for Update_Attribute Method