gpt4 book ai didi

jquery - 加载时出现客户端验证错误的 rails form_for

转载 作者:行者123 更新时间:2023-11-29 13:05:31 26 4
gpt4 key购买 nike

我正在尝试在 Rails 中使用客户端验证 Gem。我的表单一直在查找,直到将 `:validate => 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-z\d=#...-]+$/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

home.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 %>

最佳答案

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

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

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

关于jquery - 加载时出现客户端验证错误的 rails form_for,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13909078/

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