在 Ruby on Rails 应用程序中声明 CONSTANT 值

发布于 2024-11-18 01:12:53 字数 144 浏览 4 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

临走之时 2024-11-25 01:12:53

为什么你不创建一个 .rb 文件

 config/initilizers directory

并在那里定义你的常量。

PS:--您需要重新启动服务器才能访问这些变量。

why dont u create a .rb file in

 config/initilizers directory

and define your constants there.

PS:-- you need to restart your server to access those variables.

故事与诗 2024-11-25 01:12:53

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.

溺渁∝ 2024-11-25 01:12:53

您可以使用初始化程序或简单的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文