0
問題我正在使用has_scope gem並試圖找到包含nil/not nil info的列。它不工作。我遇到了has_scope gem
我在我的模型中的兩個範圍:
scope :empty -> where(name: nil)
scope :present -> where.not(title: nil)
在我的控制器
:
has_scope :empty
has_scope :present
def index
clients = apply_scopes(Clients).all
end
在命令行:
捲曲-X GET http://localhost:3000/clients?empty