如何使用ActionView :: Base将rails helper方法传递给视图?

时间:2017-05-03 19:12:53

标签: ruby-on-rails ruby

我正在使用ActionView :: Base在我当前的rails项目中呈现视图,而不是ApplicationController。到目前为止,这已经顺利进行,但现在我需要一种方法来从以这种方式呈现的视图中访问辅助方法。我用来呈现视图的确切代码如下所示:

action_view = ActionView::Base.new(ActionController::Base.view_paths, {})
action_view.render(file: "example/path", locals: { foo: 1, bar: "hello world" })

有没有办法将自定义帮助器方法从helpers文件夹传递给以这种方式呈现的视图?

0 个答案:

没有答案