在 Ruby on Rails 应用程序中声明 CONSTANT 值
我正在使用 Ruby on Rails 3.0.7,我想在某个地方声明一些可由应用程序中的所有类访问的常量值。我将使用提到的常量主要用于“全局”验证目的,但我正在考虑使用它们来实现授权系统。
我必须在哪里以及如何声明这些常量?你有什么建议?
I am using Ruby on Rails 3.0.7 and I would like to state somewhere some CONSTANT values that is accessible by all classes in the application. I will use mentioned constants mostly for "global" validation purposes but I am considering to use those also for implement an authorization system.
Where and how I have to state these constants? What do you advice about?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
为什么你不创建一个 .rb 文件
并在那里定义你的常量。
PS:--您需要重新启动服务器才能访问这些变量。
why dont u create a .rb file in
and define your constants there.
PS:-- you need to restart your server to access those variables.
Rails 3 中的一个位置是
config/application.rb
(模块 YourAppName,类 Application)以及一些 Rails 配置行。某些常量也可能非常适合您的模型类,因此您可能需要根据具体情况进行考虑。One place for this in Rails 3 is
config/application.rb
(module YourAppName, class Application) along with some of the Rails configuration lines. Some constants may also fit very well with your model classes, so you might want to consider this on a case-by-case basis.您可以使用初始化程序或简单的 yml 文件,在启动时加载 - 查看 EnvYAML 配方 http://railswizard.org/< /a> 例如。
You can either use an initializer or a simple yml file, loaded at startup - look at EnvYAML recipe at http://railswizard.org/ for example.