我正在Sinatra中创建Api,但是我想例如使用以下路线:
/places
/places.meta
/places.list
/users/id/places.list
我可以在Rails中工作,但不能在Sinatra中工作
def index
case request.format.to_sym.to_s
when 'list'
result = Place.single_list(parameters)
when 'meta'
result = @parameters.to_meta
else
result = Place.get_all(parameters)
end
render json: result, status: 200
end
答案 0 :(得分:1)
Sinatra没有“请求格式”的内置概念,因此您必须手动指定Rails自动为您提供的可识别格式的路由模式。
在这里,我使用指定为Regexp并带有命名捕获的路由模式:
require 'sinatra'
get /\/places(\.(?<format>meta|list))?/ do # named capture 'format'
case params['format'] # params populated with named captures from the route pattern
when 'list'
result = Place.single_list(parameters)
when 'meta'
result = @parameters.to_meta
else
result = Place.get_all(parameters)
end
result.to_json # replace with your favourite way of building a Sinatra response
end