0

私はコメントモデルでrecaptcha祖先を使用しています:

class Comment < ActiveRecord::Base
  has_ancestry
  attr_accessible :name, :content, :post_id, :parent_id
  belongs_to      :post, :touch => true
end

しかし、comments_controller.rb#create は、正しいキャプチャの有無にかかわらずコメントを保存します。

def create
  @comment = Comment.create(params[:comment])
  if verify_recaptcha(:model => @comment) && @comment.save
    flash[:notice] = "Replied"
    redirect_to(post_path(:id => @comment.post))
  else
    flash[:error] = "Incorrect word verification. Are you sure you\'re human?"
    redirect_to(post_path(:id => @comment.post))
  end
end

フォームは次のとおりです。

<%= simple_form_for :comment, :url => { :controller => :comments, :action => "create" } do |f| %>
  <%= f.input :post_id, :required => false, :as => :hidden %>
  <%= f.input :parent_id, :required => false, :as => :hidden %>
  <%= f.input :name, :label => false, :placeholder => "Name (optional)", :required => false %>
  <%= f.input :content, :label => false, :placeholder => "Reply", :as => :text %>
  <%= raw recaptcha_tags -%>
  <%= f.button :submit, "Reply" %>
<% end %>

何が原因でしょうか?

4

1 に答える 1

1

これが問題かどうかはわかりませんが、次のことが必要だと思います。

@comment = Comment.new(params[:comment])

Comment.createモデルは if/else の前に既に保存されています。

ここで答えを見てください。

于 2011-05-21T03:27:30.473 に答える