所以我有一个项目资源,其中嵌套了类别,整个项目结构设置如下:
StartPoint::Application.routes.draw do
get "log_out" => "sessions#destroy", :as => 'log_out'
get "log_in" => "sessions#new", :as => 'log_in'
get "sign_up" => "users#new", :as => 'sign_up'
root :to => 'Projects#index'
resources :users
resources :sessions
resources :discussion_comments
resources :comments
resources :projects do
resources :categories
resources :duscussions
resources :tasks
end
end
现在在我的任务索引页面上说我正在尝试呈现类别表单
<%= form_for project.categories.build do |f| %>
<%= f.label :category%>
<%= f.text_field :category%>
<%= hidden_text_field :project_id, :value => project.id %>
<%= f.submit%>
<% end %>
当我渲染这个 - 我将项目对象传递到这个表单中:
<%= render 'categories/createcategory', :project => @project%>
这不是在类别索引页面中呈现,而是在任务索引页面中呈现。
因此,有了这种类型的信息(如果您需要更多信息,请告诉我)为什么这些类别显然是未定义的。
错误
undefined method `categories' for #<Project:0xb687150c>
Extracted source (around line #1):
1: <%= form_for ([project, project.categories.build]) do |f| %>
2: <%= f.label :category%>
3: <%= f.text_field :category%>
4: <%= hidden_text_field :project_id, :value => project.id %>