在 JSON JBuilder 中渲染 html 部分

Posted

技术标签:

【中文标题】在 JSON JBuilder 中渲染 html 部分【英文标题】:Render html partial in JSON JBuilder 【发布时间】:2013-10-06 18:50:24 【问题描述】:

我正在使用 Rails 4 中的 JBuilder 渲染一些学生的 JSON。我希望每个学生都有一个“html”属性,其中包含给定学生的 HTML 部分:

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

我尝试了以下方法:

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

但这给了我:

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

【问题讨论】:

试试render partial: '/students/student' 那也不行 你的部分名称是什么?它住在哪里? render partial: '/students/student' 可能因为前导 / 而无法工作。尝试:渲染部分:'students/student' 【参考方案1】:

您必须指定部分格式,因为 Rails 默认会查找具有当前格式 (json) 的部分。例如:

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

【讨论】:

我尝试了render partial: 'students/student.html.haml',但得到了Missing partial students/stundent.html.haml with :locale=&gt;[:en], :formats=&gt;[:json], :handlers=&gt;[:erb, :builder, :raw, :ruby, :jbuilder, :coffee, :haml]. 学生?似乎是一个错字。如果您从我的答案中复制,我在那里有同样的错字。【参考方案2】:

Rails 部分在文件名中使用下划线,但在作为字符串引用时不在代码中(当然取决于您加载它们的方式)。通常一个名为 posts/_post.html.haml 的部分会在代码中被引用为 render :partial => 'posts/post'

【讨论】:

部分指向的路径通常是指来自 app/views 文件夹的相对路径。【参考方案3】:

您需要指定部分格式:

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

【讨论】:

json.array! @students 做 |学生| json.html render('student', 格式: [:html]) end 谢谢,它工作正常。 ```` json.array! @students 做 |学生| json.html 渲染(学生,格式:[:html])结束 ````【参考方案4】:

这对我有用:

# 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>

【讨论】:

以上是关于在 JSON JBuilder 中渲染 html 部分的主要内容,如果未能解决你的问题,请参考以下文章

在 html 视图中呈现 JBuilder 视图

为啥 Rails 找不到我的 jbuilder 模板或不渲染它?

为啥在测试 RSPEC 时 JBuilder 不返回 JSON 中的响应正文

JBuilder中未定义的局部变量或方法“json”

如何在 Jbuilder 中使用带有 Gon gem 的 Rails 助手?

如何将 JBuilder 视图的 JSON 表示呈现为字符串?