如何将 yaml 文件解析为 ruby 哈希和/或数组?
我需要将 yaml 文件加载到 Hash 中,
我应该怎么办?
I need to load a yaml file into Hash,
What should I do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我需要将 yaml 文件加载到 Hash 中,
我应该怎么办?
I need to load a yaml file into Hash,
What should I do?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
我会使用类似的东西:
I would use something like:
维纳布尔斯答案的一个简单版本:
A simpler version of venables' answer:
使用 YAML 模块:
http://ruby-doc.org/stdlib-1.9 .3/libdoc/yaml/rdoc/YAML.html
http://yaml4r .sourceforge.net/doc/page/parsing_yaml_documents.htm
Use the YAML module:
http://ruby-doc.org/stdlib-1.9.3/libdoc/yaml/rdoc/YAML.html
http://yaml4r.sourceforge.net/doc/page/parsing_yaml_documents.htm
您可能会遇到 此相关问题中提到的问题,即 YAML 文件或流指定 YAML 加载器将其放入其中的对象将尝试将数据转换为。问题是您需要一个了解相关对象的相关 Gem。
我的解决方案非常简单,是作为该问题的答案提供的。这样做:
本质上,您从 yaml 文本中删除对象分类器文本。然后你解析/加载它。
You may run into a problem mentioned at this related question, namely, that the YAML file or stream specifies an object into which the YAML loader will attempt to convert the data into. The problem is that you will need a related Gem that knows about the object in question.
My solution was quite trivial and is provided as an answer to that question. Do this:
In essence, you strip the object-classifier text from the yaml-text. Then you parse/load it.