3

我正在使用宝石:globalize3 和 easy_globalize3_accessors。我有验证问题。例如,我有 Post 模型:

class Post
  translates :title, :content
  globalize_accessors :locales => [:en, :ru], :attributes => [:title, :content]
  validates :title, :content, :presence => true
end

和形式:

= form_for @post do |f|
  -I18n.available_locales.each do |locale|
    = f.text_field "title_#{locale}"
    = f.text_area "content_#{locale}"

它看起来像在视图中(如果 I18n.locale = :ru):

<form action="/ru/posts" method="post">
  <input id="post_title_ru" name="post[title_ru]" type="text" />
  <textarea cols="40" id="post_content_ru" name="vision[content_ru]"></textarea>

  <input id="post_title_en" name="post[title_en]" type="text" />
  <textarea cols="40" id="post_content_en" name="vision[content_en]"></textarea>

  <input name="commit" type="submit" value="Создать Видение" />
</form>

如果我只用俄语填写字段,则验证通过,如果我只想用英语发布,并且只填写英语字段(当 I18n.locale = :ru),则验证失败

Title can't be blank
Content can't be blank

据我了解,属性存在问题,验证仅检查第一个属性:title_ru 和:content_ru。并且对其余属性(:content_en 和:title_en)检查没有达到。

如何制作第二个数据验证器来检查第一组属性的验证是否未通过?

提前致谢

4

2 回答 2

5
validate :titles_validation

def titles_validation
  errors.add(:base, "your message") if [title_ru, title_en].all? { |value| value.blank? }
end
于 2012-08-29T14:04:47.187 回答
3

问题是 globalize3 正在验证您当前所在的任何语言环境的标题。如果要验证每个语言环境(而不仅仅是当前语言环境),则必须为每个语言环境中的属性显式添加验证器(正如@apneadiving 指出的那样)。

您应该能够通过循环自动生成这些验证器I18n.available_locales

class Post < ActiveRecord::Base
  I18n.available_locales.each do |locale|
    validates :"title_#{locale}", :presence => true
  end

  ...

end
于 2012-08-29T13:49:09.770 回答