我想限制要求所有API控制器被重定向到JSON路径。 我想使用重定向,因为还URL应根据响应改变。
一种选择是使用before_filter
其将请求重定向到同样的动作,但强制JSON格式。 这个例子不工作呢!
# base_controller.rb
class Api::V1::BaseController < InheritedResources::Base
before_filter :force_response_format
respond_to :json
def force_response_format
redirect_to, params[:format] = :json
end
end
另一种选择是,以限制路由设置的格式。
# routes.rb
MyApp::Application.routes.draw do
namespace :api, defaults: { format: 'json' } do
namespace :v1 do
resources :posts
end
end
end
我希望所有的请求,最终成为一个JSON请求:
http://localhost:3000/api/v1/posts
http://localhost:3000/api/v1/posts.html
http://localhost:3000/api/v1/posts.xml
http://localhost:3000/api/v1/posts.json
...
你会推荐哪种策略?