0

我在下面的结构中有一个哈希

{
    "Result": [
        {
            "Links": [
                {
                    "UrlTo": "http://www.example.com/",
                    "Visited": 1365128454,
                    "FirstSeen": 1351907446,
                }
            ],
            "Index": 0,
            "Rating": 120.969674
        }
    ]
}

但我希望它变平并看起来像下面一样。所以我想将链接散列提升一个级别,使其不再是多维的。完成此任务的最简单方法是什么?我可以使用.flatten之类的东西吗?

{
    "Result": [
        {
            "UrlTo": "http://www.example.com/",
            "Visited": 1365128454,
            "FirstSeen": 1351907446,
            "Index": 0,
            "Rating": 120.969674
        }
    ]
}

非常感谢

4

1 回答 1

4
data = { ... }

h = data['Result'].first
h.merge!(h.delete('Links').first)
于 2013-05-11T15:35:08.310 回答