2

我正在尝试使用 rabl 从 rake 任务创建一个 json 文件。下面我有简化版本进行测试。

当我通过 url 查看“articles.json”或“articles/2.json”时,我得到了预期的 json 响应。

但是当我尝试通过 rake 任务运行它时,在创建的 jsonFile 中,@articles 总是有一个空值。它将以与@articles.count 相同的次数呈现 index.json.rabl 视图,但值始终为空。

那么如何将在我的 rake 任务中创建的 @articles 对象传递给 Rabl.render?

index.json.rabl

@feedName ||= 'default'
node(:rss) { partial('articles/rss), :object => @feedName }
node(:headlines) { partial('articles/show'), :object => @articles }

显示.json.rabl

object @article
attributes :id,:body
....

出口.rake

task :breakingnews => :config do
  filename = 'breakingnews.json'
  jsonFile = File.new(filename)
  @articles = Article.limit(10)
  n = Rabl::renderer.json(@articles,'articles/index',view_paths => 'app/views')
  jsonFile.puts b
  jsonFile.close
4

1 回答 1

11

我遇到了类似的问题。你基本上有2个选择:

  1. 显式传递单个对象作为参数
  2. 按范围隐式传递多个对象

按参数

在你的任务中

@your_object = ...
Rabl.render(@your_object, 'your_template', view_paths => 'relative/path/from/project/root', :format => :json)

在你的 Rabl 模板中

object @any_name_you_like
attributes :id,:body
....

这会将您的模板呈现为 json,并将对象指定为其实例对象(您可以将其命名为任何您想要的名称)

按范围

这有点棘手。我发现的唯一选择是将所需的对象设置为调用范围中的实例变量,并将此范围设置为模板的呈现(请参阅范围)。

在你的任务中

@one_object = ...
@another_object = ...
Rabl.render(nil, 'your_template', view_paths => 'relative/path/from/project/root', :format => :json, :scope => self)

在你的 Rabl 模板中

object @one_object
attributes :id,:body
node(:my_custom_node) { |m| @another_object.important_stuff }
于 2012-06-13T18:08:28.287 回答