0
我在我的應用程序中有一些我想用作api的控制器。在這個API中,我需要使用版本控制。忽略模型
在我routes.rb
我真的使用這個:
require 'api_constraints'
(...)
scope '/:target/:version', :module => :api, :constraints => { :version => /[0-z\.]+/ } , :defaults => { :format => 'json' } do
scope :module => :v1, :constraints => ApiConstraints.new(:version => 1, :default => true) do
match '/list' => 'sample#list'
end
end
我api_constraints.rb
:
class ApiConstraints
def initialize(options)
@version = options[:version]
@default = options[:default]
end
def matches?(req)
@default || req.headers['Accept'].include?("application/waytaxi.api.v#{@version}")
end
def self.version
@version
end
end
在我SampleController.rb
:
module Api
module V1
class SampleController < ApiBaseController
def list
render json: Model.find_by_id(params[:id])
end
end
end
end
的ApiBaseController
:
module Api
class ApiBaseController < ApplicationController
before_filter :authenticate
skip_before_filter :verify_authenticity_token
private
def authenticate
# if params[:target] == "ios"
# render :json => {status: 404}
# return false
# end
end
end
end
的問題是:
每當我試圖打電話給Model
我得到這個錯誤:如果我使用
uninitialized constant Api::V1::SampleController::Model
:::Model
我得到這個錯誤:
uninitialized constant Model
是的,我的數據庫上有這個模型。如果我在SampleController
之外使用Model.all
,我會得到對象。
P.S .:我正在使用rails 3.2.8