0

我正在尝试访问存储在我的 UserVotes 表中名为 totalVotes 的列中的整数,但不断收到无方法错误

我一直在尝试从控制台调试:

1.9.3-p327 :006 > uservote = UserVote.where("soundcloud_id = 68061927")
  UserVote Load (0.2ms)  SELECT "user_votes".* FROM "user_votes" WHERE (soundcloud_id = 68061927)
 => [#<UserVote id: 5, user_id: "1", party_profile_id: "1", soundcloud_id: "68061927", totalVotes: 0, created_at: "2013-02-19 04:57:58", updated_at: "2013-02-19 04:57:58">] 

目前很好...

1.9.3-p327 :007 > uservote.totalVotes
NoMethodError: undefined method `totalVotes' for #<ActiveRecord::Relation:0x007febb49ab350>

然后它坏了,我不知道为什么。我访问 totalVotes 值的最佳方式是什么?

4

1 回答 1

3

您的问题是您正在调用.totalVotesAR 关系。先打电话.first,然后你应该没有问题。

>> uservote = UserVote.where("soundcloud_id = 68061927").first
>> uservote.totalVotes
于 2013-02-19T05:34:35.860 回答