一种消除“警告:Object#type 已弃用”的方法;使用对象#class”

发布于 2024-09-27 04:41:47 字数 181 浏览 3 评论 0原文

我有一个应用程序与我无法控制的系统中的 ActiveResource 进行交互。

碰巧系统向我发送了一个 JSON feed,其中一个字段称为“type”,每次序列化该模型时,我都会遇到这个令人讨厌的异常。由于这是一个 CLI 应用程序,所以它非常很烦人。

有没有办法消除这个警告?

I have an application that interacts with ActiveResource from a system I have no control of.

It happens that the system sends me a JSON feed and one of the fields is called "type" and, everytime this model is serialized, I get this nasty exception. Since this is a CLI application, it's very annoying.

Is there a way to silence this warning?

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

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

发布评论

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

评论(1

ぃ弥猫深巷。 2024-10-04 04:41:47

这是在代码的某些部分消除警告的一种方法

def silently(&block)
  warn_level = $VERBOSE
  $VERBOSE = nil
  begin
    result = block.call
  ensure
    $VERBOSE = warn_level
  end
  result
end

silently do
  #do your thing
end

Here's one way to silence warnings in certain parts of code:

def silently(&block)
  warn_level = $VERBOSE
  $VERBOSE = nil
  begin
    result = block.call
  ensure
    $VERBOSE = warn_level
  end
  result
end

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