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]}.
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'
You need to specify the partial format:
json.array! @students do |student|
json.html render(student, formats: [:html])
end
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>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With