2

我正在尝试检测 mongoid 模型中的必填字段,以便在视图中的标签后添加标记。这是我正在使用的初始化程序。请注意,Mongoid 唯一不同的是Mongoid::Validations::PresenceValidator,在 ActiveRecord 中将是ActiveModel::Validations::PresenceValidator,所以也许这不是一个与 mongoid 相关的问题(?):

class ActionView::Helpers::FormBuilder
  alias :orig_label :label

  # add a 'required' CSS class to the field label if the field is required
  def label(method, content_or_options = nil, options = nil, &block)
    if content_or_options && content_or_options.class == Hash
      options = content_or_options
    else
      content = content_or_options
    end

    if object.class.validators_on(method).map(&:class).include? Mongoid::Validations::PresenceValidator

      if options.class != Hash
        options = {:class => "required"}
      else
        options[:class] = ((options[:class] || "") + " required").split(" ").uniq.join(" ")
      end
    end

    self.orig_label(method, content, options || {}, &block)
  end
end

另外,我使用这种样式是为了在 lable.required 中包含一个星号:

 /* add required field asterisk */
 label.required:after {
     content: " *";
 }

如果我手动在标签中设置所需的类,它会成功显示。问题是 FormBuilder 根本没有修改标签,也没有显示任何标记。似乎根本没有使用该文件,我将它作为初始化程序包含在内,但事件编写简单puts "I am here...",它没有显示在服务器控制台中。

我错过了什么?

提前感谢您的回答。

4

2 回答 2

1

我有同样的问题,也许可能是你的rails版本。

“在 Rails 4 中,验证类已更改为 ActiveRecord。因此,将 ActiveModel::Validations::PresenceValidator 替换为 ActiveRecord::Validations::PresenceValidator 应该可以解决问题。”

来源:http ://blog.pothoven.net/2012/10/self-marking-required-fields-in-rails.html

于 2014-01-07T15:35:04.567 回答
0

尝试扩展

module ActionView::Helpers::FormHelper
于 2013-05-17T10:32:57.007 回答