我有控制器使用respond_with
和jbuilder来渲染一些JSON数据。
我需要在某处保存渲染的字符串。通常我可以使用render_to_string
,但这需要我传递template
参数和locals
。
我需要的是访问使用respond_with(@object)
呈现的字符串,例如:
{"id": 1, "name": 2}
并将其保存在某个地方
任何想法?
答案 0 :(得分:0)
然后你可能需要查看this SO post -
另请查看此链接http://apidock.com/rails/ActionController/Base/render_to_string。 这清楚地显示了必要的选项参数。