我有这样的问题:我想渲染 html 文件,但我没有设置我的文件的路径。
我需要说,我在 Windows 上运行 Rails。
在我看来,我有代码:
<%= render :file => '1509/1509/app/views/static_pages/index.html', :layout => false %>
但这给了我错误:
undefined method `virtual_path' for false:FalseClass
我的文件在这里:
C:\1509\1509\app\views\static_pages
也试过:
<%= render :file => '/views/static_pages/index.html', :layout => false %>
但这给了我:
Missing template /views/static_pages/index with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :coffee]}. Searched in:
* "c:/1509/1509/app/views"
* "C:/Ruby192/lib/ruby/gems/1.9.1/gems/devise-2.1.0/app/views"
* "c:/1509/1509"
* "c:/"
我做错了什么?