2

我有两个模型,类别和帖子。

类别.rb

class Category
include Mongoid::Document

field :title, :type => String
has_many :posts, :autosave => true, dependent: :destroy

end

Post.rb

class Post
include Mongoid::Document

field :title, :type => String
belongs_to :category
end

我正在使用simple_form gem

如果我在我的帖子表格中写下一个:

<%= simple_form_for(@post) do |f| %>
 <%= f.collection_select :category, Category.all, :id, :title, :prompt => "Choose a Category"%>
 <%= f.input :title %>
 <%= f.button :submit %>
<% end %>

该表格确实可以正常工作:)。

但如果我使用 simple_form 格式的下一个表单:

<%= simple_form_for(@post) do |f| %>
  <%= f.association :category, :prompt => "Choose a Category" %>
  <%= f.input :title %>
  <%= f.button :submit %>
 <% end %>

我得到下一个错误:

Completed 500 Internal Server Error in 23ms
ActionView::Template::Error (undefined method `valid_options' for nil:NilClass):

我该如何解决?谢谢!

4

1 回答 1

0

问题已解决。谢谢卡洛斯安东尼奥达席尔瓦:D。

您可以在http://groups.google.com/group/plataformatec-simpleform/browse_thread/thread/f384f0445af8468e或:

<%= f.input :category, :collection => Category.all, :prompt => "Choose a Category" %>

谢谢!

于 2012-05-06T22:26:51.587 回答