在使用 RABL 模板渲染后,我需要将 JSON 对象存储为 ActiveRecord 属性。我怎样才能做到这一点?
一个简单的例子是
MyModel.my_data = <output from the RABL template>
在使用 RABL 模板渲染后,我需要将 JSON 对象存储为 ActiveRecord 属性。我怎样才能做到这一点?
一个简单的例子是
MyModel.my_data = <output from the RABL template>
查看https://github.com/nesquena/rabl#rendering-templates-directly
Rabl::Renderer.json(@model, 'model/show')
这应该可以解决问题。