我想在Rails中将ERB模板呈现为纯文本.理想情况下,我可以做这样的事情:
应用程序/视图/测试/ test.txt.erb
Test <%= @test %>
当我尝试时,Rails抱怨以下错误:
ActionView::MissingTemplate (Missing template test/test,application/test with {:locale=>[:en],:formats=>[:html],:variants=>[],:handlers=>[:erb,:builder,:raw,:ruby,:coffee]}. Searched in: * "/Users/landonschropp/Development/test/app/views" ):
解决方法
最简单的方法是采取行动:
render '/test/test.text.erb',layout: false,content_type: 'text/plain'