0

我們在討論簡約嵌套Comment's Controller打破驗證時的NoMethodError

驗證是validates :body, :presence => true

現在,編輯評論的作品,如果我創建一個新的註釋,並打破了驗證它正常顯示。

我的問題是,當我編輯的評論,並刪除他的身體,平時我應該對身體的錯誤,相反,我得到一個NoMethodError in Comments#update

問題擴展=>通常,當我成功地編輯評論(http://localhost:3000/s/38/comments/11/edit)它將我重定向到@screen​​3210。但是,如果我清空身體並嘗試提交,它會將我重定向到http://localhost:3000/s/38/comments/11,而不是向我顯示錯誤。

enter image description here

我失去了什麼?

控制器:

def update 
    respond_to do |format| 
     if @comment.update(comment_params) 
     format.html { redirect_to @comment.screen, notice: 'Comment was successfully updated.' } 
     format.json { head :no_content } 
     else 
     format.html { render action: 'edit' } 
     format.json { render json: @comment.errors, status: :unprocessable_entity } 
     end 
    end 
    end 

我的編輯表單:

<%= form_for([@screen, @comment]) do |f| %> 

    <div class="panel panel-default"> 
    <div class="panel-heading"> 
     <h1>Edit your Comment</h1> 
     <% if @comment.errors.any? %> 
     <div id="error_explanation"> 
      <h3><%= pluralize(@comment.errors.count, "error") %> prohibited this comment from being saved:</h3> 

      <ul> 
      <% @comment.errors.full_messages.each do |msg| %> 
       <li><%= msg %></li> 
      <% end %> 
      </ul> 
     </div> 
     <% end %> 
    </div> 

    <div class="panel-body"> 
     <div class="form-group"> 
     <%= f.label :body, "Comment" %> 
     <%= f.text_area :body, autofocus: true, class: "form-control" %> 
     </div> 
    </div> 

    <div class="panel-footer"> 
     <%= f.submit "Edit Comment", class: "btn btn-primary" %> 
     <%= link_to "Back", @screen, class: "btn btn-primary" %> 
    </div> 
    </div> 

<% end %> 

我的路線:

resources :screens, :path => 's' do 
    resources :comments 
    member do 
     get :like 
     get :unlike 
    end 
    end 
screen_comments GET /s/:screen_id/comments(.:format)   comments#index 
        POST /s/:screen_id/comments(.:format)   comments#create 
    new_screen_comment GET /s/:screen_id/comments/new(.:format)  comments#new 
edit_screen_comment GET /s/:screen_id/comments/:id/edit(.:format) comments#edit 
     screen_comment GET /s/:screen_id/comments/:id(.:format)  comments#show 
        PATCH /s/:screen_id/comments/:id(.:format)  comments#update 
        PUT /s/:screen_id/comments/:id(.:format)  comments#update 
        DELETE /s/:screen_id/comments/:id(.:format)  comments#destroy 
+0

你還可以顯示相關的路由定義嗎? – vee

+0

更新了問題。 –

+0

你可以做'耙路線',並驗證是否存在該路線? – geekazoid

回答

0

表格使用多態的路線一樣,總是會使用新記錄的多元化路徑。我需要在我的表單中明確說明:

form_for([@user, @profile], :url => user_profile_path(@user))