Padrino渲染json引发模板未找到

时间:2018-01-09 20:21:51

标签: json ruby rendering padrino

我正在使用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的情况下渲染渲染吗?

0 个答案:

没有答案