我正在使用Padrino并面临下一个问题。我想渲染jsons,控制器是以下,然后我总是得到错误。
我用:
打电话给终点curl -i -H "Accept: application/json" http://localhost:3000/mymodels
get :index, provides: [:html, :json] do
@models = MyModel.all
case content_type # is json!
when :html then
render "index", collection: @models
when :json then
# render @models.to_json, layout: false # does not work either
render @models
end
end
错误消息为:Padrino::Rendering::TemplateNotFound
以上代码基于此SO answer
你知道如何让它渲染纯json并避免在json的情况下渲染渲染吗?