我正在尝试使用
ApplicationController.renderer.render(partial: 'details/proposal')
任何帮助??
答案 0 :(得分:0)
ApplicationController.renderer.render
是Rails 5的新功能。如果你不在5,那么很遗憾你还无法使用它。
在Rails 4上,最简单的方法是使用ActionView::Base,如下所示:
controller = ActionController::Base.new
view = ActionView::Base.new(ActionController::Base.view_paths, {}, controller)
view.render(partial: 'details/proposal')