Rails client_side_validation 删除标签并且不在 div 中显示错误
我按照 https://github.com/bcardarella/client_side_validations 说明和 Railscast 进行操作,但仍然标签消失并且我的标准中没有显示错误
<% if @contactmail.errors.any? %>
<div id="errorExplanation" class="contact-error">
<ul>
<% @contactmail.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
我使用 Rails 3.1 和 Ruby 1.9.3
I followed the https://github.com/bcardarella/client_side_validations instructions and the Railscast for it but still the labels vanishes and no errors show up in my standard
<% if @contactmail.errors.any? %>
<div id="errorExplanation" class="contact-error">
<ul>
<% @contactmail.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
I use Rails 3.1 and Ruby 1.9.3
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
差不多标准
Pretty much standard
我在我使用的 github 存储库上发现了此问题
那里提出的分叉并且一切正常
I found this issue on the github repository
I used the fork proposed there and everything worked fine