当我为我的rails应用程序创建API服务时,我遇到了问题。 API如下:
module API
class Level < Grape::API
resources :levels do
get do
Level.all
end
end
end
end
我还创建了一个名为level
的模型
class Level < ActiveRecord::Base
some methods
end
当我请求API接口时
undefined method `all' for API::Level:Class
所以我该怎么做,我将Level.all
改为::Level.all
它有效,但对我来说并不好。