我是rails的新手 - 但现在想知道,当我在我的表单中尝试同时创建子级和父级时,Rails验证在模型对象上丢失了吗?
在我的例子中(粗体模型) 1 - 蛋糕 - has_many - CakeDetails
很多 - CakeDetails - belongs_to 1 - 尺寸
1 - CakeType - belongs_to 1 - 蛋糕
我设法创建了一个表单,允许我创建一个Cake,指定大小,相关价格以及蛋糕的类型。
但似乎所有内置的模型验证都已消失。
这是对的吗?如何将验证带回模型对象?
当我渲染新动作时,我会弹出一个空白表格,当我提交一张空白表格时,我会得到以下内容:
Started POST "/cakes" for 127.0.0.1 at 2018-04-25 21:19:03 +0100
Processing by CakesController#create as JS
Parameters: {"utf8"=>"✓", "authenticity_token"=>"r6B2ult7w7z4vez95f2pNXmk7Q1rYSzj8Wi9VwnS4EgIAw8PG/w7isfAeiiSB9sY8+0+oHldMVpy1GFKBmrpmw==", "cake"=>{"name"=>"", "description"=>"", "cake_type_id"=>"", "cake_details_attributes"=>{"0"=>{"_destroy"=>"true", "price"=>""}, "1"=>{"_destroy"=>"true", "price"=>""}}}, "commit"=>"Create Cake"}
(0.1ms) begin transaction
(0.1ms) rollback transaction
Rendering cakes/new.html.erb within layouts/application
CakeType Load (0.3ms) SELECT "cake_types".* FROM "cake_types"
Rendered cakes/_form.html.erb (15.9ms)
Rendered cakes/new.html.erb within layouts/application (19.6ms)
Completed 200 OK in 109ms (Views: 100.4ms | ActiveRecord: 0.5ms)
我得到了它回滚事务,因为没有cake_type_id。但是没有显示错误。
以下是我表单中的错误显示部分。 我已经尝试添加更多来检查嵌套对象中的错误但没有看到任何内容。
<% if @cake.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(cake.errors.count, "error") %> prohibited this cake from being saved:</h2>
<ul>
<% @cake.errors.full_messages.each do |message| %>
<li><%= message %></li>
<% end %>
</ul>
</div>
<% end %>
<% @cake.cake_details.each do |detail| %>
<% if detail.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(cake.errors.count, "error") %> prohibited this cake from being saved:</h2>
<ul>
<% @cake.errors.full_messages.each do |message| %>
<li><%= message %></li>
<% end %>
</ul>
</div>
<% end %>
<% end %>
我的蛋糕模型
class Cake < ApplicationRecord
validates :name, :description, :cake_type, presence: true
belongs_to :cake_type
has_many :cake_details, -> {order('size_id ASC')}, inverse_of: :cake
has_many :sizes, through: :cake_details
accepts_nested_attributes_for :cake_details, :allow_destroy => true
validates_associated :cake_type, :cake_details
end
蛋糕控制器
def create
#@cake = Cake.new(params[cake:{}])
#params.require(:cake).permit(:name, :description,:cake_type_id)
@cake = Cake.new(cake_params)
respond_to do |format|
if @cake.save
format.html { redirect_to @cake, notice: 'Cake was successfully created.' }
format.json { render :show, status: :created, location: @cake }
else
format.html { render :new }
format.json { render json: @cake.errors, status: :unprocessable_entity }
end
end
end
def cake_only_params
params.require(:cake).permit(:name, :description,:cake_type_id)
end
def cake_params
params.require(:cake).permit(:name, :description,:cake_type_id, cake_type_id:[:type_id],
cake_details_attributes:[:_destroy, :id, :cake_id, :size_id, :price])
end
更新
我以为我必须访问我在行动中声明的变量,例如@cake 但我更新了我的表格以使用此
<%= form_with(model: cake, local: true) do |form| %>
而不是我认为我需要它:
<%= form_with(model: @cake) do |form| %>
我会阅读有关文档的内容,但对于我为什么搞砸了这些内容的任何评论都绝对值得赞赏。刚开始学习这个框架......:/
答案 0 :(得分:0)
根据this article,我确信其他地方,在Rails 5中,使用form_with
创建的所有表单都是默认远程的(即提交为js
)。
通过将local: true
添加到form_with
,您可以强制表单提交为html
,然后您的控制器会使用format.html
。
答案 1 :(得分:0)
我以为我必须访问我在行动中声明的变量,例如
@cake
但我更新了表单以使用它:
<%= form_with(model: cake, local: true) do |form| %>
而不是我认为我需要它:
<%= form_with(model: @cake) do |form| %>
现在有效。
特别感谢jvillian如此迅速地做出回应。
注意到:
通过将local: true
添加到form_with
,您可以强制表单提交为html
,然后您的控制器会使用format.html
。