2010-12-11 3 views
3

전체 Ruby on Rails 3 시작 설명서 블로그 예제 애플리케이션을 읽고 복사/붙여 넣기했습니다. 나는 일하는 블로그 애플리케이션을 가지고있다. 다음과 같이 나는 포스트 모델에 일부 유효성 검사 코드를 추가 :Rails 3.0.3 시작하기 가이드 코드에 field_with_errors 태그 필드 (첫 번째 게시물)의 div가 표시되지 않습니다.

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"> 사업부를 표시하지 않습니다 들.

결과 HTML 다음 <div class="field_with_errors"> 부재의 원인이 될 수있는 어떤

<!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> 

? 태그 폼이 부분적으로 처리되는 것과 관련이 있습니까? 첫 번째 게시물을 읽어 주셔서 감사합니다.

게시물/_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) 
+0

양식 부분 루비 코드를 게시 할 수 있습니까? –

+0

빈 태그에 대한 유효성 검사 오류가 실제로 발생합니까 아니면 저장되지 않았습니까? –

+0

빈 양식을 제출하려고 할 때 '태그를 비워서는 안됩니다'및 '태그가 너무 짧습니다 (최소 1 자)'와 명령 행 출력이 위의 게시물에 추가됩니다. – BasicObject

답변

0

Post 클래스에 attr_accessible을 추가 했습니까?

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

답변 해 주셔서 감사합니다. 나는'attr_accessible : name, : title, : content, : tags_attributes' 및'attr_accessible : tags_attributes'를 시도했습니다. 첫 번째는 내가 게시물을 만들 수있게하고 다른 하나는 게시물을 만들지 못하게합니다. 'tag_attributes' 또는'post_tags_attributes'를 사용하면 질량 할당 경고가 나타납니다. 슬프게도'attr_accessible : name, : title, : content, : tags_attributes'는 여전히 field_with_errors div 클래스의 문제를 해결하지 못합니다. – BasicObject

0

나는 field_with_errors 마법이 어떻게 작동하는지 잘 모르지만 검증에 실패한 필드에 레이블이나 입력이 필요합니다. 따라서 post_form.label :tags을 추가하면이를 트리거합니다. 태그 이름 필드가 유효성 검사에 실패하지 않기 때문에 태그에 text_field (또는 label)라는 이름이 나타나지 않습니다. 원하는 경우 field_with_errors div를 직접 추가 할 수 있습니다 (@post.errors[:tags].empty?).

0

나는 몇 가지를 보았다고 생각하지만, 그들 중 어느 것에 대해서도 긍정적이지 않습니다. 첫째, #tags가 속성이 아니라 연관 인 경우 유효성 검사 태그를 직접 사용할 수 있다고 생각하지 않습니다. validates_associated : tags (태그 모델의 validates_presence_of : name)이어야합니다.

둘째, 빈 양식을 제출할 때 accept_nested_attributes_for의 reject_if 옵션이 실행되지 않습니까? 이 경우 폼이 렌더링되기 전에 Tag 객체가 제거됩니다.

관련 문제