我是Rails的菜鸟,并且已经为此工作了3-4天。我创建了一个多对多:通过关联,但是当我提交一个新对象时,我收到了这个错误:
#<ActiveModel::Errors:0x007fbced7cda88 @base=#<BlogPost id: nil, created_at: nil, updated_at: nil, title: "title 13", content: "pajfposjpfej 13", posted_by: "poster 13", comments: nil, blog_pic: nil>, @messages={:"categorizations.blog_post"=>["must exist"], :title=>[], :posted_by=>[], :content=>[], :blog_pic=>[]}, @details={"categorizations.blog_post"=>[{:error=>:blank}]}>
我的表单提交我提交的是我选择一个类别,因此错误表明它不应该为空。非常感谢任何帮助。现在已经退伍了几天。
模型:
class BlogPost < ApplicationRecord
has_many :categorizations
has_many :categories, :through => :categorizations
accepts_nested_attributes_for :categorizations
has_many :comments
mount_uploader :blog_pic, BlogPicUploader
end
class Categorization < ApplicationRecord
belongs_to :blog_post
belongs_to :category
end
class Category < ApplicationRecord
has_many :categorizations
has_many :blog_posts, :through => :categorizations
end
视图/ blog_posts / new.html.erb
<%= form_for @blog_post do |b| %>
<%= b.label :title %>
<%= b.text_field :title %><br>
<%= b.fields_for :categorizations do |cat| %>
<%= cat.label :category_name, "Category 1" %>
<%= cat.collection_select(:category_id, Category.all, :id, :category_name, include_blank: "Select Category") %><br>
<% end %>
<%= b.submit "Submit", class: "btn btn-primary" %>
<% end %>
控制器:
class BlogPostsController < ApplicationController
def index
@blog_posts = BlogPost.order(id: :desc)
end
def new
@blog_post = BlogPost.new
@categorizations = @blog_post.categorizations.build
@categories = @blog_post.categories.build
end
...
def create
@blog_post = BlogPost.new(blog_post_params)
respond_to do |format|
if @blog_post.save
format.html { redirect_to @blog_post, notice: 'Your blog was submitted successfully' }
format.json { render :show, status: :created, location: @blog_post }
else
format.html { render :new }
format.json { render json: @blog_post.errors, status: :unprocessable_entity }
end
end
puts @blog_post.errors.inspect
end
private
def blog_post_params
params.require(:blog_post).permit(:title, :content, :posted_by, :comments, :blog_pic, {categorizations_attributes: [:category_id, :category_name]})
end
end
答案 0 :(得分:0)
您还需要声明categories
的嵌套属性。
像:
class BlogPost < ApplicationRecord
has_many :categorizations
has_many :categories, :through => :categorizations
accepts_nested_attributes_for :categorizations
accepts_nested_attributes_for :categories
has_many :comments
mount_uploader :blog_pic, BlogPicUploader
end
您可以参考以下链接获取说明
https://hackhands.com/building-has_many-model-relationship-form-cocoon/
答案 1 :(得分:0)
这里的答案与代码无关 - 简单地说 - 在Rails 5中,他们已经做了一个更改,现在默认需要belongs_to关联,而在Rails 4中,这是可选的。请参阅以下链接解释:
http://blog.bigbinary.com/2016/02/15/rails-5-makes-belong-to-association-required-by-default.html
您必须将config / initializers / new_framework_defaults中的此行从true
更改为false
:
Rails.application.config.active_record.belongs_to_required_by_default = false