25

我正在使用JBuilder来返回一些 JSON。我有一个index.json.jbuilder生成数据的,我需要将它呈现为一个字符串。但是,我不确定如何执行此操作,因为:@my_object.to_json并且@my_object.as_json似乎没有通过 JBuilder。

如何将 JBuilder 视图呈现为字符串?

4

8 回答 8

45

我在控制器中将用户集合呈现为 json 字符串,如下所示:

#controllers/users_controller.rb
def index
  @users = User.all
  @users_json = render_to_string( template: 'users.json.jbuilder', locals: { users: @users})
end

#views/users/users.json.jbuilder
json.array!(users) do |json, user|
  json.(user, :id, :name)
end
于 2012-04-19T18:16:26.103 回答
9

如果视图users.json.jbuilder位于相对于控制器的默认路径并且找不到模板,则可能是由于format差异,因为它可能正在尝试查找html格式文件。有两种方法可以解决此问题:

  1. 让客户端 GET/users/index.json

    或者

  2. formats调用时指定选项render_to_string(也适用于render):


#controllers/users_controller.rb
def index
  @users = User.all
  @users_json = render_to_string( formats: 'json' ) # Yes formats is plural
end

这已在 Rails 4.1 中得到验证。

于 2014-10-31T04:44:02.280 回答
5

如果您在控制器中执行此操作,一个更简单的选择是尝试将代码移动到控制器正在呈现的视图中。

我在这里描述了这个: https ://github.com/shakacode/react-webpack-rails-tutorial/blob/master/docs/jbuilder.md

基本上你可以render在视图中调用,你就完成了。像这样:

<%= react_component('App', render(template: "/comments/index.json.jbuilder"),
    generator_function: true, prerender: true) %>

如果您想将数据从控制器传递到视图,以下是关于会发生什么的注释:

class PagesController < ApplicationController
  def index
    @comments = Comment.all

    # NOTE: The below notes apply if you want to set the value of the props in the controller, as
    # compared to he view. However, it's more convenient to use Jbuilder from the view. See
    # app/views/pages/index.html.erb:20
    #
    #  <%= react_component('App', render(template: "/comments/index.json.jbuilder"),
    #     generator_function: true, prerender: true) %>
    #
    #
    # NOTE: this could be an alternate syntax if you wanted to pass comments as a variable to a partial
    # @comments_json_sting = render_to_string(partial: "/comments/comments.json.jbuilder",
    #                                         locals: { comments: Comment.all }, format: :json)
    # NOTE: @comments is used by the render_to_string call
    # @comments_json_string = render_to_string("/comments/index.json.jbuilder")
    # NOTE: It's CRITICAL to call respond_to after calling render_to_string, or else Rails will
    # not render the HTML version of the index page properly. (not a problem if you do this in the view)
    # respond_to do |format|
    #   format.html
    # end
  end
end
于 2015-10-05T03:14:47.083 回答
3

你也可以这样做,这会让你的控制器更干净一些。

# controller
def new
  @data = Data.all
end


# view
<% content_for :head do %>
  <script type="text/javascript">
    var mydata = <%= raw render :partial => 'path/to/partial', :locals => {data: @data} %>;
  </script>
<% end %>


# path/to/_partial.html.jbuilder
json.array!(@data) do |d|
  json.extract! field1, :field2, :field3, :field4
  json.url data_url(d, format: :json)
end


# layouts/application.html
<!DOCTYPE html>
<html>
<head>
  <%= yield :head %>
</head>
<body>
...
</body>
</html>
于 2013-11-16T02:04:51.170 回答
2

查看源代码,看起来你可以这样做:

json_string = Jbuilder.encode do |json|
  json.partial! 'path/to/index', @my_object
end
于 2012-04-18T20:18:59.183 回答
2

从控制台:

view = ApplicationController.view_context_class.new("#{Rails.root}/app/views")
JbuilderTemplate.encode(view){|json| json.partial!('path/to/index', @my_object) }

通过https://github.com/rails/jbuilder/issues/84#issuecomment-38109709

于 2015-07-14T18:05:40.463 回答
0

按照justingordon的提示。

如果您使用的是 React 组件,则可以执行以下操作。

在您的控制器中:

@users = User.all

在您看来:

<%= react_component("YourComponentName",
                    props: render('your_template.json.jbuilder')) %>

这是在 Rails 5.1 上测试的。

于 2018-02-19T01:28:38.070 回答
0

在控制器中你可以这样做

def index
  json = JbuilderTemplate.new(view_context) do |json|
    json.partial! 'index'
  end.attributes!
  do_something(json)
  render json: json
end

请注意,您需要“_index.json.jbuilder”,因为它调用部分渲染器

于 2016-09-04T09:36:55.663 回答