轨form_for加载时出现客户端验证错误



我正在尝试在 Rails 中使用 CLient Side Validation Gem。 我的表单工作找到,直到将":验证 => true"添加到我的form_for。 然后我收到一个错误,告诉我我的编写方式是错误的。 我尝试像示例一样重新格式化它,但它只是抛出错误。

错误

Using form_for(:name, @resource) is not supported with ClientSideValidations. Please use form_for(@resource, :as => :name) instead.

hashtag_controller

def home    
        @leaderboard = Hashtag.leaderboard_history
        @trends_display = Trend.trends_display
        @hash_create = ""
    end
    def create 
        @hash_create = Hashtag.create_hashtag(params[:hashtag])
        Hashlog.create_hashlog(params[:hashtag])
        @random_hashtag_pull = Hashtag.random_hashtags_pull
        @leaderboard = Hashtag.leaderboard_history_current
        respond_to do |format|
            format.html { redirect_to root_path }
            format.js 
        end
    end

hashtag.rb

class Hashtag < ActiveRecord::Base
  attr_accessible :text, :profile_image_url, :from_user, :created_at, :tweet_id, :hashtag, :from_user_name, :view_count, :wins
  hashtag_regex = /^[A-Za-zd=#...-]+$/i
  validates :hashtag, :format => { :with => hashtag_regex }, :length => { :within => 2..20 }                    

 class << self
def create_hashtag(hashtag)                #creates new tweetvstweet for inputed hashtag with # for guests
    dash = "#"
    @hashtag_scrubbed = [dash, hashtag].join.downcase
    (User.current_user ? User.current_user.twitter : Twitter).search("%#{@hashtag_scrubbed}", :lang => "en", :count => 100, :result_type => "mixed").results.map do |tweet|
        unless exists?(tweet_id: tweet.id)
      create!(
        tweet_id: tweet.id,
        text: tweet.text,
        profile_image_url: tweet.user.profile_image_url,
        from_user: tweet.from_user,
        from_user_name: tweet.user.name, 
        created_at: tweet.created_at,
        hashtag: @hashtag_scrubbed,
        view_count: "0",
        wins: "0"
          ) 
        end  
    end
end

  def random_hashtags_pull                         #pulls 4 random hashtags for a vote first display
    Hashtag.where{ |hashtag| hashtag.hashtag =~ @hashtag_scrubbed}.order{"RANDOM()"}.limit(4).each(&:update_view_count)
  end
  def cast_vote_hashtag(hashtag)                    #pulls 4 random hashtags for a vote continued votes
    Hashtag.where{ |hashtag| hashtag.hashtag =~ @hashtag_scrubbed}.order{"RANDOM()"}.limit(4).each(&:update_view_count)
  end
  def leaderboard_history_current                  #displaying 5 highscore hashtags on the right
    Hashtag.where{ |hashtag| hashtag.hashtag =~ @hashtag_scrubbed}.order{"wins DESC"}.limit(5)  
  end
  def cast_vote(cast_vote)                           #counts number of wins
    Hashtag.increment_counter(:wins, cast_vote)
  end
  def leaderboard_history                            #right side leaderboard history
    Hashtag.order('wins DESC').limit(5)
  end
end
  def update_view_count                                  #updates the number of views
    Hashtag.increment_counter(:view_count, self.id)
    self.view_count += 1 
  end

首页.html.erb

<div class="span6 votes-middle">
    <%= render 'shared/twitter_search' %>
    </div>
**search form**
<%= form_for(@hash_create, :url => hashtags_path, :validate => true, remote: true)  do |f| %>
                <div class="input-prepend input-append">
                <span class="add-on swag">#</span>
                <%= f.text_field :hashtag,class: "span4 swag_text_field", id:"appendedPrependedInput",  :validate => true, data: {autocomplete_source: autocomplete_index_path} %>
                <%= f.submit "VS!", class: "btn add-on-right swag_button" %>
                <% end %>

我认为您应该为表单创建一个新对象

在新操作中添加 @hash_create = HashTag.new 并将表单更改为

form_for(@hash_create, :url => hashtags_path, :validate => true, remote: true)

最新更新