我正在尝试检测 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..."
,它没有显示在服务器控制台中。
我错过了什么?
提前感谢您的回答。