1 error prohibited this {{model}} from being saved
There were problems with the following fields:
* {{attribute}} {{message}}我得到了这个错误,我使用的代码是:
validates_format_of :user_id , :with => /\A(([0-9]{4})-[A-Z]{2}$)\Z/ , :message => "should be in the format 1111-TT", :allow_nil => true, :allow_blank => true知道这是什么原因吗?
发布于 2011-01-25 03:16:08
我在使用Rails 2和i18n 0.5.0时也遇到了同样的问题。在您的环境中卸载i18n 0.5.0或指定旧版本(我使用的是0.4.1)。
https://stackoverflow.com/questions/4785023
复制相似问题