在 ruby yaml 序列化中跳过所选类型
我正在使用 YAML::dump()
序列化一些对象。 不幸的是,其中包括一些不应序列化的元素,例如有时带有等待线程的锁。
有没有办法从序列化中排除选定的类型,或者强制将它们序列化为空对象?
I'm serialising some object using YAML::dump()
. Unfortunately that includes some elements that shouldn't be serialised, like locks with waiting threads sometimes.
Is there any way to exclude selected types from serialisation, or force them to be serialised as an empty object instead?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对我来说这听起来不太优雅,但你可以扩展这些对象以将其转储为 nil
It doesn't sound very elegant to me, but you could extend those objects to dump as nil
解决方法:
Solved with: