我正在處理一個簡單的項目來測試Rails 3.2的嵌套屬性。無法將符號轉換爲Integer + Rails 3.2嵌套屬性
can't convert Symbol into Integer
post.rb和comment.rb
class Post < ActiveRecord::Base
attr_accessible :title, :comments_attributes
has_many :comments
accepts_nested_attributes_for :comments
validates_presence_of :title
end
class Comment < ActiveRecord::Base
attr_accessible :comment, :author
belongs_to :post
validates_presence_of :comment
validates_presence_of :author
end
posts_controller.rb
def new
@post = Post.new
@post.comments.build
respond_to do |format|
format.html # new.html.erb
format.json { render json: @post }
end
end
:但是,試圖提交表單時,我得到這樣那樣的錯誤
_form.html.erb
個<%= form_for(@post) do |f| %>
<% if @post.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(@post.errors.count, "error") %> prohibited this post from being saved:</h2>
<ul>
<% @post.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
<div class="field">
<%= f.label :title %><br />
<%= f.text_field :title %>
</div>
<%= f.fields_for :comments_attributes do |builder| %>
<fieldset>
<%= builder.label :comment %><br />
<%= builder.text_field :comment %><br />
<%= builder.label :author %><br />
<%= builder.text_field :author %>
</fieldset>
<% end %>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
參數
{"utf8"=>"✓",
"authenticity_token"=>"gNA0mZMIxkA+iIJjw8wsddcKxvmzaFnrgiHvFw1OrYA=",
"post"=>{"title"=>"Dummy Title",
"comments_attributes"=>{"comment"=>"Dummy Comment",
"author"=>"Dummy Author"}},
"commit"=>"Create Post"}
不告訴我們錯誤發生的位置,即代碼的哪一行和哪一行,我們將無法爲您提供幫助。一個完整的堆棧跟蹤也有幫助。 –
Holger就是對的,我們需要一個完整的stacktrace和你的posts_controller的創建方法來幫助你 –