一种消除“警告:Object#type 已弃用”的方法;使用对象#class”
我有一个应用程序与我无法控制的系统中的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是在代码的某些部分消除警告的一种方法:
Here's one way to silence warnings in certain parts of code: