1

您好,我的 rails 应用程序出现了一个奇怪的错误。

ActionView::MissingTemplate (Missing partial foo/bar, application/bar with {:locale=>[:en], :formats=>[:js, "application/ecmascript", "application/x-ecmascript", :html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :handlers=>[:erb, :builder, :coffee]}. Searched in: blah blah
):
  app/controllers/foo_controller.rb:9:in `doSomething'

现在我非常确定 app/views/foo 中有 bar.html.erb 文件。有任何想法吗?我听说当文件名中可能有空格时有时会发生这种情况,但事实并非如此。有任何想法吗?

4

2 回答 2

2

inapp/views/foo bar.html.erb应该是_bar.html.erb,因为所有部分名称都应该以"_"

于 2013-01-25T07:55:55.883 回答
1

部分名称以“_”下划线开头。看起来您在前缀 bar.html.erb 中错过了下划线

于 2013-01-25T07:54:46.000 回答