NameError:未初始化的常量 ActiveRecord::Associations::Builder::XMLMarkup

发布于 2024-12-04 10:10:20 字数 435 浏览 2 评论 0原文

我发现一篇标题与此非常相似的帖子,但它没有给我我正在寻找的答案。 我正在尝试在模型中使用构建器。代码看起来像这样:

require 'builder'

class Document < ActiveRecord::Base
...
  def create_xml
  xml = Builder::XmlMarkup.new( :indent => 2)
  ...
  end
...
end

当我尝试执行此代码时,出现以下错误:

NameError: uninitialized constant ActiveRecord::Associations::Builder::XMLMarkup

但是,当我在 Rails 控制台中尝试相同的操作时,一切正常。
我错过了什么吗?任何帮助将不胜感激。

I found a post with a headline quite similar to this one, but it didn't give me the answer I was looking for.
I am trying to use builder inside a model. The code looks something like this:

require 'builder'

class Document < ActiveRecord::Base
...
  def create_xml
  xml = Builder::XmlMarkup.new( :indent => 2)
  ...
  end
...
end

When I try to execute this code, I get the following error:

NameError: uninitialized constant ActiveRecord::Associations::Builder::XMLMarkup

But, when I try the same thing within the rails console, everything works just fine.
Am I missing something? Any help would be much appreciated.

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

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

发布评论

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

评论(1

靑春怀旧 2024-12-11 10:10:20

找到了答案。

您必须将 Builder 附加到根级别,如下所示:

xml = ::Builder::XmlMarkup.new( :indent => 2 )

Found the answer.

You have to append Builder to the rootlevel, like this:

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