【发布时间】:2013-03-05 16:29:46
【问题描述】:
是否可以在 Rails 4 中创建here 中描述的约束范围?
routes.rb
scope format: true, constraints: { format: 'json' } do
get '/bar' => "bar#index_with_json"
end
我得到的错误是
NoMethodError (undefined method 'source' for "json":String):
config/routes.rb:17:in `block (2 levels) in <top (required)>'
config/routes.rb:16:in `block in <top (required)>'
config/routes.rb:1:in `<top (required)>'
【问题讨论】: