1

我有一个轨道项目。

application.html.slim我有:

doctype html
html
  head
    title RailsMongoidPj
    = stylesheet_link_tag    "application", media: "all", "data-turbolinks-track" => true
    = javascript_include_tag "application", "data-turbolinks-track" => true
    = csrf_meta_tags
    meta content="width=device-width, initial-scale=1.0" name="viewport"
    = yield(:html_head)
  body
    = yield

在具有方法的控制器SearchController中:

  def javascript(*files)
    content_for(:html_head) do
      javascript_include_tag(*files)
    end
  end
  helper_method :javascript

此控制器还有一个new带有相应视图的方法,其内容是:

= javascript('/vendor/assets/javascript/handelbars.runtime.js')

- content_for :html_head do
  script#entry-template type="text/x-handlebars-template"
    | template content

但我有一个错误:

undefined method `content_for' for #<SearchFlickrController:0x007f8e4f2bae78>

Extracted source (around line #3):

1  / search flickr api page
2  
3  = javascript('/vendor/assets/javascript/handelbars.runtime.js')
4  
5  - content_for :html_head do
6    script#entry-template type="text/x-handlebars-template"

为什么方法content_for未定义?这不是标准rails方法吗?

4

1 回答 1

2

content_for是一个辅助方法。您content_for在视图中使用,而不是在控制器中使用。因此,使用方法的正确位置content_for是助手(app/helper/search_helper.rb例如):

module SearchHelper  
  def javascript(*files)
    content_for(:html_head) do
      javascript_include_tag(*files)
    end
  end
end
于 2013-10-02T20:22:32.393 回答