Zerigo DNS gem 与 A​​ctiveResource 3.1 不兼容

发布于 2024-12-01 03:54:43 字数 253 浏览 1 评论 0原文

我正在使用 zerigo_dns 1.2.0 gem (https://github.com/twilson63/zerigo_dns),它需要使用 ActiveResource 进行“请求”调用。它在 Rails 3.0.4 上工作得很好,因为默认格式是 XML。但 Rails 3.1.0.rc4 使用 JSON 作为默认值,并导致出现问题,因为 Zerigo 需要 application/xml mime 类型。

有人知道如何有效地切换到使用 XML 作为默认格式吗?

I'm using the zerigo_dns 1.2.0 gem (https://github.com/twilson63/zerigo_dns) and it needs to make a 'request' call using ActiveResource. It was working fine with Rails 3.0.4 because the default format was XML. But Rails 3.1.0.rc4 uses JSON as default and was causing problems because Zerigo was expecting the application/xml mime-type.

Anyone knows how I can switch to use XML as default format effectively?

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

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

发布评论

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

评论(2

一袭白衣梦中忆 2024-12-08 03:54:43

Zerigo::DNS::Base 继承自 ActiveResource。你应该能够做

Zerigo::DNS::Base.format = :xml

Zerigo::DNS::Base inherits from ActiveResource. You should be able to just do

Zerigo::DNS::Base.format = :xml
篱下浅笙歌 2024-12-08 03:54:43

让它与这个猴子补丁一起工作:

class Zerigo::DNS::Base
 def self.format
  self._format || ActiveResource::Formats::XmlFormat
 end
end

Got it to work with this monkey patch:

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