0

我有这样的问题:我想渲染 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:/"

我做错了什么?

4

1 回答 1

1

绝对路径是:

<%= render :file => 'c:/1509/1509/app/views/static_pages/index.html' %>

相对路径:

<%= render :file => 'static_pages/index.html' %>
于 2012-09-20T08:25:37.780 回答