gpt4 book ai didi

html - Rails 3.0.3 入门指南代码不显示 Tag 字段的 field_with_errors div(第一篇文章)

转载 作者:数据小太阳 更新时间:2023-10-29 08:13:50 25 4
gpt4 key购买 nike

我阅读并复制/粘贴了整个 Ruby on Rails 3 入门指南博客示例应用程序。我有一个正在运行的博客应用程序。我向 Post 模型添加了一些验证代码,如下所示:

class Post < ActiveRecord::Base
validates :name, :length => { :maximum => 64 }

validates :title, :presence => true,
:length => { :minimum => 5 }

validates :content, :presence => true,
:length => { :minimum => 5 }

validates :tags, :presence => true,
:length => { :minimum => 1 }

has_many :comments, :dependent => :destroy
has_many :tags

accepts_nested_attributes_for :tags, :allow_destroy => :true,
:reject_if => proc { |attrs| attrs.all? { |k, v| v.blank? } }
end

当我尝试提交一个空表单来测试验证码时,我得到了预期的错误,但它没有显示 <div class="field_with_errors">标记字段的 div。

生成的 HTML:

<!DOCTYPE html>
<html>
<head>
<title>Rails Blog</title>
<link href="/stylesheets/scaffold.css?1292045851" media="screen" rel="stylesheet" type="text/css" />
<script src="/javascripts/prototype.js?1292044228" type="text/javascript"></script>
<script src="/javascripts/effects.js?1292044228" type="text/javascript"></script>
<script src="/javascripts/dragdrop.js?1292044228" type="text/javascript"></script>
<script src="/javascripts/controls.js?1292044228" type="text/javascript"></script>

<script src="/javascripts/rails.js?1292044229" type="text/javascript"></script>
<script src="/javascripts/application.js?1292044228" type="text/javascript"></script>
<meta name="csrf-param" content="authenticity_token"/>
<meta name="csrf-token" content="FYDsbSpjAry7CQrVbdgdozsOJ66w4f4b8nVQ+towSYg="/>
</head>
<body>

<h1>New post</h1>

<form accept-charset="UTF-8" action="/posts" class="new_post" id="new_post" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="&#x2713;" /><input name="authenticity_token" type="hidden" value="FYDsbSpjAry7CQrVbdgdozsOJ66w4f4b8nVQ+towSYg=" /></div>
<div id="errorExplanation">
<h2>6 errors prohibited this post from being saved:</h2>

<ul>
<li>Title can't be blank</li>
<li>Title is too short (minimum is 5 characters)</li>
<li>Content can't be blank</li>
<li>Content is too short (minimum is 5 characters)</li>
<li>Tags can't be blank</li>

<li>Tags is too short (minimum is 1 characters)</li>
</ul>
</div>

<div class="field">
<label for="post_name">Name</label><br />
<input id="post_name" name="post[name]" size="30" type="text" value="" />
</div>
<div class="field">

<div class="field_with_errors"><label for="post_title">Title</label></div><br />
<div class="field_with_errors"><input id="post_title" name="post[title]" size="30" type="text" value="" /></div>
</div>
<div class="field">
<div class="field_with_errors"><label for="post_content">Content</label></div><br />
<div class="field_with_errors"><textarea cols="40" id="post_content" name="post[content]" rows="20"></textarea></div>
</div>

<h2>Tags</h2>

<div class="field">
<label for="post_tags_attributes_0_name">Tag:</label>
<input id="post_tags_attributes_0_name" name="post[tags_attributes][0][name]" size="30" type="text" />
</div>

<div class="actions">
<input id="post_submit" name="commit" type="submit" value="Create Post" />

</div>
</form>

<a href="/posts">Back</a>


</body>
</html>

可能导致 <div class="field_with_errors"> 的原因缺席?它与部分标签形式有什么关系吗?感谢您阅读我的第一篇文章。

帖子/_form.html.erb:

<% @post.tags.build %>
<%= form_for(@post) do |post_form| %>
<% if @post.errors.any? %>
<div id="errorExplanation">
<h2><%= pluralize(@post.errors.count, "error") %> prohibited this post from being saved:</h2>
<ul>
<% @post.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>

<div class="field">
<%= post_form.label :name %><br />
<%= post_form.text_field :name %>
</div>
<div class="field">
<%= post_form.label :title %><br />
<%= post_form.text_field :title %>
</div>
<div class="field">
<%= post_form.label :content %><br />
<%= post_form.text_area :content %>
</div>
<h2>Tags</h2>
<%= render :partial => 'tags/form',
:locals => {:form => post_form} %>
<div class="actions">
<%= post_form.submit %>
</div>
<% end %>

标签/_form.html.erb:

<%= form.fields_for :tags do |tag_form| %>
<div class="field">
<%= tag_form.label :name, 'Tag:' %>
<%= tag_form.text_field :name %>
</div>
<% unless tag_form.object.nil? || tag_form.object.new_record? %>
<div class="field">
<%= tag_form.label :_destroy, 'Remove:' %>
<%= tag_form.check_box :_destroy %>
</div>
<% end %>
<% end %>

提交空白表单时的命令终端输出:

Started POST "/posts" for 192.168.11.28 at 2010-12-11 23:23:03 +0000
Processing by PostsController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"T2o6Tn8cfeJyVVcFMU91Zuk42BBs06uqyMIgfmy41SM=", "post"=>{"name"=>"", "title"=>"", "content"=>"", "tags_attributes"=>{"0"=>{"name"=>""}}}, "commit"=>"Create Post"}
Rendered tags/_form.html.erb (45.5ms)
Rendered posts/_form.html.erb (320.0ms)
Rendered posts/new.html.erb within layouts/application (351.2ms)
Completed 200 OK in 748ms (Views: 379.2ms | ActiveRecord: 0.0ms)

最佳答案

您是否在Post 类中添加了attr_accessible:

class Post < ActiveRecord::Base
....
attr_accessible :tag_attributes
# or it could be the plural version :tags_attributes
....
end

关于html - Rails 3.0.3 入门指南代码不显示 Tag 字段的 field_with_errors div(第一篇文章),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4419427/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com