ruby-on-rails-3 – Rails 3:如何验证以允许空格(“”),但不能为空(数据库中为空)

在ActiveRecord(或ActiveModel)中,我希望通过以下规范
it { should allow_value("").for(:my_string) }
it { should_not allow_value(nil).for(:my_string) }

我努力了

validates :my_string,{
  :length => { :in => 0..255 },:presence => true,:allow_blank => true,:allow_nil => false,}

并且

validates :my_string,}

但是,它既允许“”也不允许,或者没有.

解决方法

您可能需要为此进行自定义验证:
validates :my_string,:length => { :in => 0..255 }
validate :my_string_is_valid

def my_string_is_valid
  self.errors.add :base,'My string can not be nil' if self.my_string.nil? 
end

相关文章

以下代码导致我的问题: class Foo def initialize(n=0) @n = n end attr_accessor :n d...
这是我的spec文件,当为上下文添加测试“而不是可单独更新用户余额”时,我得到以下错误. require 's...
我有一个拦截器:DevelopmentMailInterceptor和一个启动拦截器的inititializer setup_mail.rb. 但我想将...
例如,如果我有YAML文件 en: questions: new: 'New Question' other: recent: ...
我听说在RSpec中避免它,let,let !,指定,之前和主题是最佳做法. 关于让,让!之前,如果不使用这些,我该如...
我在Rails中使用MongoDB和mongo_mapper gem,项目足够大.有什么办法可以将数据从Mongoid迁移到 Postgres...