作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有两个模型,投诉和公司。投诉 belongs_to
和 accepts_nested_attributes
公司和公司has_many
投诉。
# Models
class Complaint < ActiveRecord::Base
attr_accessible :complaint, :date, :resolved
belongs_to :user, :class_name => 'User', :foreign_key => 'id'
belongs_to :company, :class_name => 'Company', :foreign_key => 'id'
has_many :replies
accepts_nested_attributes_for :company
end
class Company < ActiveRecord::Base
attr_accessible :name
has_many :complaints, :class_name => 'Complaint', :foreign_key => 'id'
has_many :branches, :class_name => 'Branch', :foreign_key => 'id'
belongs_to :industry
end
# Complaint Controller
class ComplaintsController < ApplicationController
...
def new
@complaint = Complaint.new
@complaint.build_company
respond_to do |format|
format.html # new.html.erb
format.json { render json: @complaint }
end
end
...
end
# Complaint Form
<%= form_for(@complaint) do |f| %>
<% if @complaint.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(@complaint.errors.count, "error") %> prohibited this complaint from being saved:</h2>
<ul>
<% @complaint.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
<div class="field">
<%= f.label :complaint %><br />
<%= f.text_area :complaint, :rows => 5 %>
</div>
<div class="field">
<%= f.label :date %><br />
<%= f.datetime_select :date %>
</div>
<% if current_user.try(:admin?) %>
<div class="field">
<%= f.label :resolved %><br />
<%= f.check_box :resolved %>
</div>
<% end %>
<%= fields_for :company do |company| %>
<div class="field">
<%= company.label :name, 'Company' %>
<%= company.text_field :name %>
</div>
<% end %>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
最佳答案
我的错误在于表格。我错过了 f.
之前fields_for :company
<%= f.fields_for :company do |company| %>
关于forms - 归属于关联导轨的嵌套属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15471104/
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 10 年前。 Improve thi
我是一名优秀的程序员,十分优秀!