我有一个像这样的设计形式
<h2>Sign up</h2>
<%= simple_form_for(resource, :as => resource_name, :url => registration_path(resource_name), :validate => true) do |f| %>
<%= devise_error_messages! %>
<div><%= f.text_field :name, :validate => { :presence => true }, :placeholder => 'Full Name' %></div>
<div><%= f.email_field :email, :validate => { :presence => true }, :placeholder => 'Email address ' %></div>
<div><%= f.password_field :password, :validate => { :presence => true }, :placeholder => 'Password' %></div>
<div><%= f.password_field :password_confirmation, :validate => { :presence => true }, :placeholder => 'Confirm Password' %></div>
<%= f.check_box :terms_of_service %>
<%= f.button :submit, "Next" %>
<% end %>
我使用客户端验证gems在客户端进行验证。当我从每一个中集中注意力时,在浏览器的javascript控制台中会出现以下错误。
Uncaught TypeError: Cannot call method 'add' of undefined
Uncaught TypeError: Cannot call method 'remove' of undefined
请帮我解决这个问题.. 感谢。
答案 0 :(得分:0)
花了很长时间来解决这个问题的简单方法。
只需将此行添加到应用程序js
即可//= require rails.validations.simple_form
之前,请务必将此gem 'client_side_validations-simple_form'
添加到Gemfile
并运行捆绑安装