我刚刚开始使用我的第一个Ruby on Rails web应用程序。我有很多不同的模型,视图,控制器等等。

我想找到一个好地方粘真正的全局常数的定义,适用于我的整个应用程序。特别是,它们适用于我的模型的逻辑,并在我的视图中所做的决定。我找不到任何DRY的地方来放置这些定义,它们既适用于我的所有模型,也适用于我的所有视图。

举个具体的例子,我想要一个常量colors = ['white', 'blue', 'black', 'red', 'green']。这在模型和视图中都被广泛使用。我可以在哪里只在一个地方定义它,以便它是可访问的?

我的尝试:

Constant class variables in the model.rb file that they're most associated with, such as @@COLOURS = [...]. But I couldn't find a sane way to define it so that I can write in my views Card.COLOURS rather than something kludgy like Card.first.COLOURS. A method on the model, something like def colours ['white',...] end - same problem. A method in application_helper.rb - this is what I'm doing so far, but the helpers are only accessible in views, not in models I think I might have tried something in application.rb or environment.rb, but those don't really seem right (and they don't seem to work either)

是否没有办法定义从模型和视图都可以访问的东西?我的意思是,我知道模型和视图应该是分开的,但在某些领域,它们肯定会有需要引用相同的领域特定知识的时候?


当前回答

对于应用程序范围的设置和全局常量,我建议使用Settingslogic。这些设置存储在YML文件中,可以从模型、视图和控制器中访问。此外,您可以为所有环境创建不同的设置:

  # app/config/application.yml
  defaults: &defaults
    cool:
      sweet: nested settings
    neat_setting: 24
    awesome_setting: <%= "Did you know 5 + 5 = #{5 + 5}?" %>

    colors: "white blue black red green"

  development:
    <<: *defaults
    neat_setting: 800

  test:
    <<: *defaults

  production:
    <<: *defaults

在视图的某个地方(我更喜欢这种东西的帮助方法)或在模型中,你可以得到,例如,数组的颜色Settings.colors.split(/\s/)。它非常灵活。你不需要发明一辆自行车。

其他回答

另一个选择,如果你想在一个地方定义你的常数:

module DSL
  module Constants
    MY_CONSTANT = 1
  end
end

但是仍然使它们在全局可见,而不必以完全合格的方式访问它们:

DSL::Constants::MY_CONSTANT # => 1
MY_CONSTANT # => NameError: uninitialized constant MY_CONSTANT
Object.instance_eval { include DSL::Constants }
MY_CONSTANT # => 1

全局变量应该在config/initializers目录中声明

COLOURS = %w(white blue black red green)

从Rails 4.2开始,您可以使用配置。x属性:

# config/application.rb (or config/custom.rb if you prefer)
config.x.colours.options = %w[white blue black red green]
config.x.colours.default = 'white'

将以以下方式提供:

Rails.configuration.x.colours.options
# => ["white", "blue", "black", "red", "green"]
Rails.configuration.x.colours.default
# => "white"

加载自定义配置的另一种方法:

# config/colours.yml
default: &default
  options:
    - white
    - blue
    - black
    - red
    - green
  default: white
development:
  *default
production:
  *default
# config/application.rb
config.colours = config_for(:colours)
Rails.configuration.colours
# => {"options"=>["white", "blue", "black", "red", "green"], "default"=>"white"}
Rails.configuration.colours['default']
# => "white"

在Rails 5、6和7中,除了config.x,您还可以直接使用配置对象进行自定义配置。但是,它只能用于非嵌套配置:

# config/application.rb
config.colours = %w[white blue black red green]

它将以以下方式提供:

Rails.configuration.colours
# => ["white", "blue", "black", "red", "green"]

Rails 6.1引入了可以简化YML配置的共享组:

# config/colours.yml
shared:
  options:
    - white
    - blue
    - black
    - red
    - green
  default: white

我通常在我的rails程序中有一个“查找”模型/表,并将其用于常量。如果常数在不同的环境下是不同的这是非常有用的。此外,如果你有一个扩展它们的计划,比如你想在以后的日期添加“黄色”,你可以简单地向查找表中添加一个新行,然后完成它。

如果您赋予管理员修改此表的权限,则他们将不会来维护。:)干燥。

下面是我的迁移代码:

class CreateLookups < ActiveRecord::Migration
  def change
    create_table :lookups do |t|
      t.string :group_key
      t.string :lookup_key
      t.string :lookup_value
      t.timestamps
    end
  end
end

我用种子。Rb来预填充它。

Lookup.find_or_create_by_group_key_and_lookup_key_and_lookup_value!(group_key: 'development_COLORS', lookup_key: 'color1', lookup_value: 'red');

使用类方法:

def self.colours
  ['white', 'red', 'black']
end

然后模型。colors将返回该数组。或者,创建初始化式并将常量包装在模块中,以避免名称空间冲突。