0

在使用 RABL 模板渲染后,我需要将 JSON 对象存储为 ActiveRecord 属性。我怎样才能做到这一点?

一个简单的例子是

MyModel.my_data = <output from the RABL template>
4

1 回答 1

1

查看https://github.com/nesquena/rabl#rendering-templates-directly

Rabl::Renderer.json(@model, 'model/show')

这应该可以解决问题。

于 2012-11-28T21:42:36.960 回答