当我这样做时,来自 irb:
Router.all(:email=>"blake@gmail.com")
我得到与该电子邮件关联的所有路由器的列表。但是当我这样做时:
Router.count(:email=>"blake@gmail.com")
我总是得到 0
我也看过这个问题:Ruby Datamapper .count always return 0但我仍然不知道为什么它不起作用。
-- 更新#1 --
这是 Router.all 命令的输出。如您所见,我得到了结果。
1.9.3-p362 :003 > Router.all(:email=>"blake@gmail.com")
=> [#<Router @id=8 @email="blake@gmail.com" @hostname="router0">, #<Router @id=9 @email="blake@gmail.com" @hostname="router0">, #<Router @id=10 @email="blake@gmail.com" @hostname="router0">, #<Router @id=11 @email="blake@gmail.com" @hostname="router0">, #<Router @id=13 @email="blake@gmail.com" @hostname="router0">, #<Router @id=14 @email="blake@gmail.com" @hostname="router0">, #<Router @id=15 @email="blake@gmail.com" @hostname="router0">, #<Router @id=16 @email="blake@gmail.com" @hostname="router0">]
但是当我按照建议执行 Router.count 时,它仍然返回 0
1.9.3-p362 :004 > Router.count(:conditions => ["email = ?", "blake@gmail.com"])
=> 0
1.9.3-p362 :005 > Router.count(:conditions => "email = 'blake@gmail.com'")
=> 0