Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要将数据从文件/url 拉到某个模型,然后在页面上显示。哪种数据格式更好——yml 还是 json?以及如何读取它并解析为 Ruby 对象?
没有“更好”——只有适合和个人品味。
YAML 和 JSON 都是不错的选择,但一般来说,Ruby 主义者倾向于使用 YAML 来存储配置文件,而 JSON 来通过 Web API 传输数据。
在 Ruby 中解析这两种数据类型很简单,谷歌搜索也很简单。