直截了当地提问。 我有这样的查询:
@issue_books = current_user.issue_books
@already_issues = @issue_books.taken(params[:id])
其中taken
是named_scope,定义如下:
scope :taken, lambda { |book_id| where(returned: false).where(book_id: book_id) }
现在每次我运行此查询:
@issue_books.taken(params[:id])
我收到ArgumentError: wrong number of arguments (1 for 0)
错误。
如果我将taken
重命名为taken_books
等其他内容,则所有内容似乎都正常。
所以我的问题是:taken
是ruby中的关键字吗?如果没有人可以解释这种行为吗?
答案 0 :(得分:6)
它不是ruby关键字,但它似乎是在范围上定义的方法。
试试这个:
@issue_books.method(:taken).owner
#=> ActiveRecord::Delegation
@issue_books.method(:taken).source_location
#=> (...)/gems/activerecord-3.2.6/lib/active_record/relation/delegation.rb
因此,您定义的范围taken
可能会被ActiveRecord::Delegate
中的定义所掩盖。
<强>更新强>:
我做了一些挖掘,taken
似乎被定义为limit
中Arel::SelectorManager
的别名,ActiveRecord
的依赖关系。