14

我需要一些关于 Rails 4 如何与 has_one 和 belongs_to 关联一起工作的指针。

我的表格没有保存has_one关系

后模型

class Post < ActiveRecord::Base
  validates: :body, presence: true

  has_one :category, dependent: :destroy
  accepts_nested_attributes_for :category
end

class Category < ActiveRecord::Base
  validates :title, presence: true
  belongs_to :post
end

后控制器

class PostController < ApplicationController
  def new
    @post = Post.new
    @post.build_category
  end

  def create
    @post = Post.new(post_params)
  end

  private

  def post_params
    params.require(:post).permit(:body)
  end
end

Post#new 操作中的表单

<%= form_for @post do |form| %>

  <%= form.label :body %>
  <%= form.text_area :body %>

  <%= fields_for :category do |category_fields| %>
    <%= category_fields.label :title %>
    <%= category_fields.text_field :title %>
  <% end %>

  <%= form.button "Add Post" %>

<% end %>

category提交 Post 表单时不会保存标题。

调试参数

utf8: ✓
authenticity_token: 08/I6MsYjNUhzg4W+9SWuvXbSdN7WX2x6l2TmNwRl40=
post: !ruby/hash:ActionController::Parameters
  body: 'The best ice cream sandwich ever'
category: !ruby/hash:ActiveSupport::HashWithIndifferentAccess
  title: 'Cold Treats'
button: ''
action: create
controller: posts

应用日志

Processing by BusinessesController#create as HTML
  Parameters: {"utf8"=>"✓",
               "authenticity_token"=>"08/I6MsYjNUhzg4W+9SWuvXbSdN7WX2x6l2TmNwRl40=",
               "post"=>{"body"=>"The best ice cream sandwich ever"},
               "category"=>{"title"=>"Cold Treats", "button"=>""}

在 Rails 控制台中.. 我可以成功运行以下命令

> a = Post.new
=> #<Post id: nil, body: "">
> a.category
=> nil

> b = Post.new
=> #<Post id: nil, body: "">
> b.build_category
=> #<Post id: nil, title: nil>
> b.body = "The best ice cream sandwich ever"
=> "The best ice cream sandwich ever"
> b.category.title = "Cold Treats"
=> "Cold Treats"

我的问题与如何解决这个问题有关:

  1. 不知道是不是一定要加入:category_attributespost_params参数方法?
  2. 日志和调试参数是否应该显示Category属性嵌套在Post参数中?
  3. Category哈希参数中有一个空白button键不在我fields_for使用表单助手时我是否遗漏了什么?
  4. 是因为创建操作没有采用该 build_category方法,我需要将其添加到创建操作中吗?
  5. Category模型 ( )上的验证presence: true会自动在Post表单上使用吗?

提前致谢。

更新:缺少category_fields内部fields_for块。

4

2 回答 2

16

问题#1:是的,你需要像这样:category_attributespost_params强参数方法中添加:

def post_params
  params.require(:post).permit(:body, category_attributes: [:title])
end

问题 #2:是的,参数应该是嵌套的,这是您视图中的一个错字,因为您没有fields_for在父表单构建器的范围内应用(顺便说一下是复数),而且您也没有category_fieldsfields_for堵塞!

视图应如下所示:

<%= form_for @post do |form| %>

  <%= form.label :body %>
  <%= form.text_area :body %>

  <%= form.fields_for :category do |category_fields| %>
    <%= category_fields.label :title %>
    <%= category_fields.text_field :title %>
  <% end %>

  <%= form.button "Add Post" %>

<% end %>

问题#3:由于您的视图中的表单构建混淆,按钮参数可能位于错误的位置。

问题 #4:如果您接受嵌套属性,则不需要在创建操作中构建子模型

问题#5:是的,子模型的验证也会运行,如果子模型的验证失败,父模型也会出错并且不会保存到数据库中。

于 2013-11-06T04:06:53.390 回答
2

@sled 你是对的。但是对于未来的 Rails 4.1,粗体 (**) 将被弃用

def post_params
  params.require(:post).permit **(:body, :category_attributes => [:title])**
end

粗体将被迫如此(:body, category_attributes: [:title])

于 2013-11-06T07:42:29.163 回答