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')
これでうまくいくはずです。