这是我的User
模型:
class User < ActiveRecord::Base
rolify
devise :database_authenticatable, :registerable, :token_authenticatable, :confirmable, :timeoutable,
:recoverable, :rememberable, :trackable, :validatable,
:email_regexp => /^([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})$/i
attr_accessible :email, :password, :password_confirmation, :remember_me, :name, :confirmed_at, :confirmation_token
validates_uniqueness_of :email, :case_sensitive => false
validates_confirmation_of :password
end
宝石文件:
gem 'client_side_validations'
形式:
<%= form_for(resource, :as => resource_name, :class => "send-with-ajax", :url => user_registration_path(resource), :validate => true, :html => { :id => 'user_new' }) do |f| %>
<%= f.text_field :email,:placeholder => "your-email@address.com", :input_html => {:autofocus => true}, :validate => true %>
<%= f.submit :label => "Submit", :value => "Sign Me Up!" %>
<div class="ajax-response"><%= devise_error_messages! %></div>
<% end %>
当您离开该字段时它应该可以工作,这是它在本地工作的屏幕截图:
但是当我在生产中这样做时,它根本不起作用,我在日志文件或 JS 控制台中看不到任何错误。
编辑1:
验证消息未显示。
在 Heroku 日志中,每当我尝试使用“有效”电子邮件地址时,我都会看到这一点:
2012-06-10T18:44:55+00:00 app[web.1]: Started GET "/validators/uniqueness?case_sensitive=false&user%5Bemail%5D=abc%40tell.com" for xx.xxx.xx.x2 at 2012-06-10 18:44:55 +0000
2012-06-10T18:44:55+00:00 heroku[router]: GET myapp.heroku.com/validators/uniqueness?case_sensitive=false&user%5Bemail%5D=abc%40tell.com dyno=web.1 queue=0 wait=0ms service=221ms status=404 bytes=4
但它不像本地那样在我的页面上向我显示消息。
此外,我在日志中看到 HTTP 请求的唯一时间是当我尝试使用具有“有效”电子邮件结构的字符串时 - 例如abc@email.com
. 但是,如果我尝试类似的事情,abc
它不会给我我期望的消息 - invalid address
- 日志也不会显示任何内容。
编辑2:
我尝试在其中运行我的本地服务器,production mode
但我看到了与 Heroku 相同的问题。所以看起来这个问题可能与 Heroku 没有任何关系——而是与生产有关。
这是从生产中的表单生成的 HTML:
<form accept-charset="UTF-8" action="/users" class="formtastic user" data-validate="true" id="user_new" method="post" novalidate="novalidate"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="kQid^%&^%jhgdsjhgfxmw4=" />
<input data-validate="true" id="user_email" input_html="{:autofocus=>true}" name="user[email]" placeholder="your-email@address.com" size="30" type="text" />
<input label="Submit" name="commit" type="submit" value="Sign Me Up!" />
</form><script>window['user_new'] = {"type":"Formtastic::FormBuilder","inline_error_class":"inline-errors","validators":{"user[email]":{"presence":{"message":"can't be blank"},"uniqueness":{"message":"has already been taken","case_sensitive":false},"format":{"message":"is invalid","with":/^([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})$/i,"allow_blank":true}}}};</script> </div>
编辑3:
这就是我的 application.js 的外观:
//= require jquery
//= require jquery_ujs
//= require rails.validations
//= require_tree .
在我的application.html.erb
布局文件中,我只有一个对 application.js 的 JS 调用
编辑4:
我认为这可能client_side_validation
是由于 id isuser_email
和 not生成的 JS 脚本无法识别输入的情况user[email]
。所以我将id
输入更改为user[email]
并没有解决它。
有人有什么想法吗?