如何确定 Rails 3 模型类中的表名称

发布于 2024-11-10 01:17:53 字数 467 浏览 0 评论 0原文

我想在模型方法中获取表名。我发现应该有方法table_name,但是当我尝试调用它时,我得到了NameError 异常:未定义的局部变量或方法“table_name”。显然不存在:

 pp methods.grep(/^ta.*/)
["table_name_prefix?",
 "table_name_suffix?",
 "taint",
 "taguri",
 "taguri=",
 "tainted?",
 "table_name_prefix",
 "table_name_suffix",
 "tap"]

How to get a "real" table name (no lowecase -pluralizericks)?

谢谢

I want to get table name in a model method. I found there should be method table_name but when I try to call it I get NameError Exception: undefined local variable or method `table_name'. It is obviously not there:

 pp methods.grep(/^ta.*/)
["table_name_prefix?",
 "table_name_suffix?",
 "taint",
 "taguri",
 "taguri=",
 "tainted?",
 "table_name_prefix",
 "table_name_suffix",
 "tap"]

How to get a "real" table name (no lowecase - pluralize tricks)?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

心的位置 2024-11-17 01:17:53

但我需要该信息
模型的实例方法。如何获得
是吗?

您可以在实例方法中简单地执行此操作:

class Model
  def instance_method
    puts Model.table_name
  end
end

But I need that information in the
model's instance method. How to get
it?

You can simply do this in your instance method:

class Model
  def instance_method
    puts Model.table_name
  end
end
半世蒼涼 2024-11-17 01:17:53

找到了。

这是一个类方法。从 Rails 3 文档来看,这一点并不那么明显。

self.class.table_name

Found it.

It's a class method. Its not so obvious from the Rails 3 documentation.

self.class.table_name
好倦 2024-11-17 01:17:53

如果您处于需要其表名称的类的类方法中,请尝试:

class Model < ActiveRecord::Base
  def self.class_method
    puts self.table_name
  end
end

如果您尝试使用,

self.class.table_name

您将遇到 NoMethodError: undefined method 'table_name' for Class:Class

If you are in a class method of the class you want the table name for, try:

class Model < ActiveRecord::Base
  def self.class_method
    puts self.table_name
  end
end

If you try using

self.class.table_name

you'll run into a NoMethodError: undefined method 'table_name' for Class:Class

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