Kyle Decot
Kyle Decot

Reputation: 20815

Render html partial in JSON JBuilder

I am rendering JSON of some students using JBuilder in Rails 4. I want each student to have a "html" attribute that contains the HTML partial for a given student:

[
  { html: "<b>I was rendered from a partial</b>" }
]

I have tried the following:

json.array! @students do |student|
  json.html render partial: 'students/_student', locals: { student: student }
end

But this gives me:

Missing partial students/_student with {:locale=>[:en], :formats=>[:json], :handlers=>[:erb, :builder, :raw, :ruby, :jbuilder, :coffee, :haml]}.

Upvotes: 17

Views: 9130

Answers (4)

uberllama
uberllama

Reputation: 21368

You need to specify the partial format:

json.array! @students do |student|
  json.html render(student, formats: [:html])
end

Upvotes: 7

coisnepe
coisnepe

Reputation: 532

Here's what worked for me:

# students/index.json.jbuilder
json.array! @students do |student|
  json.html render partial: 'student.html.erb', locals: { student: student }
end

# students/_student.html.erb
<h4><%= student.name %></h4>

Upvotes: 1

chris
chris

Reputation: 6823

Rails partials use an underscore in the filename but not in the code when referenced as a string (depending on how you are loading them of course). Usually a partial called posts/_post.html.haml will be referenced in code as render :partial => 'posts/post'

Upvotes: 0

mechanicalfish
mechanicalfish

Reputation: 12826

You have to specify the partial format as Rails will look for partial with current format (json) by default. For example:

render partial: 'students/student.html.erb'

Upvotes: 25

Related Questions