jbuilder icon indicating copy to clipboard operation
jbuilder copied to clipboard

Render files

Open OnlyReFLeX opened this issue 7 years ago • 0 comments

Hello

I render partial, and I want to get rid of it. image

I tried using:

json.array! @posts, partial: 'posts/post', as: :post
json.partial! 'posts/post', collection: @posts, as: :post
json.partial! partial: 'posts/post', collection: @posts, as: :post
json.comments @post.comments, partial: 'comments/comment', as: :comment

But all is useless How to be?

P.S. my code

json.data do
  json.array! @manager.resources, partial: 'workers/orders/order', as: :order
end

OnlyReFLeX avatar Dec 29 '18 09:12 OnlyReFLeX