4
我正在使用RABL來格式化Rails API的輸出。我想下面的代碼在rabl中渲染partials
message.rabl:
object @message
attributes :id,:description,:created_at,:created_by_user_id
child @comments do |t|
partial("user/comment", :object => @comments)
end
comments.rabl:
object @comments
attributes :comment_body
我的問題是,我不message.rabl渲染我的部分即comments.rabl。在rabl中渲染偏色的正確方法是什麼?謝謝。