Rails 3,使用单选按钮标签干燥的最佳方式是什么?

时间:2011-02-03 01:22:31

标签: ruby-on-rails radio-button dry

假设对于名为'favfood'的整数字段,我们将单选按钮选项表示为

0 indicates "no favorite"
1 indicates "Wine and cheese"
2 indicates "Burger with everything"

在我们的_edit视图中,我们会显示上面带有友好标签的单选按钮

在/ show视图和/ index视图(以及其他几个地方)当我们显示用户首选项时,我们会显示相同的相应长文本。

在_edit中的每个单选按钮旁边放置文字字符串似乎非DRY,然后根据当前值提供一些逻辑来显示/ show和/ index等上的SAME文字字符串等。

此外,我们必须重复使用SAME逻辑,如果值= 1则显示“第一选择”,如果值= 2则显示“第二选择”。

处理用户友好的无线电标签标签的“轨道方式”是什么,因此标签(及其与字段值的关联)定义一次?

2 个答案:

答案 0 :(得分:3)

你应该做两件事。一个使用国际化(I18n),以便您的文本存储在您的en.yml文件中,您可以使用标签而不是字符串:

# en.yml
en:
  no_favorite: 'No favorite'
  wine_and_cheese: 'Wine and Cheese'
  burger_with_everything: 'Burger with everything'

# You can then translate the labels like this
I18n.t :no_favorite
I18n.t :wine_and_cheese
I18n.t :burger_with_everything

下一步是创建某种哈希或类,为您存储和转换整数值。一个简单的数组解决方案可能如下所示:

OPTIONS = [:no_favorite, :wine_and_cheese, :burger_with_everything]

然后您可以使用以下选项:

selected_value = 1
I18n.t OPTIONS[selected_value] # => wine_and_cheese
OPTIONS.index :wine_and_cheese # => 1

此外,如果所选选项是模型值(例如User#food_preference),您可以定义一个显示该用户食物偏好的功能:

class User
  OPTIONS = [:no_favorite, :wine_and_cheese, :burger_with_everything]

  def display_food_preference
    I18n.t OPTIONS[food_preference]
  end
end

答案 1 :(得分:0)

我不确定你在这里要做什么,但为什么不把字符串存储在模型中。就像:

class User < ActiveRecord::Base
    def favfood_description
        "bla bla" if favfood == 0
    end
end