我需要一些关于 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"
我的问题与如何解决这个问题有关:
- 不知道是不是一定要加入
:category_attributes
强post_params
参数方法? - 日志和调试参数是否应该显示
Category
属性嵌套在Post
参数中? - 在
Category
哈希参数中有一个空白button
键不在我fields_for
使用表单助手时我是否遗漏了什么? - 是因为创建操作没有采用该
build_category
方法,我需要将其添加到创建操作中吗? Category
模型 ( )上的验证presence: true
会自动在Post
表单上使用吗?
提前致谢。