0

我想用 yaml 制作分层数据,不幸的是,我不太习惯这种格式,但我喜欢使用它,因为它对人类友好。

这是我的yaml:

items:
    list1:
        itemA:
            item property a
        itemB:
    list2:
        itemC:
        itemD:

我正在使用 yaml-cpp,当我这样做时doc["items"]["list1"]["itemA"],我最终会遇到异常 TypedKeyNotFound,而且我认为我不太了解应该如何使用 yaml,我知道

doc["items"]["list1"]["itemA"].Type()

但我仍然有这个例外。

4

1 回答 1

1

好吧,我设法更好地理解了 yaml 是如何工作的,以及它是如何被解析的。我不想得到这样的数据 a["fdfds"]["frwrew"]["vbxvxc"],因为我不想在解析之前要求知道密钥。我设法制作了一个代码,它主要使用地图和序列来显示文档的结构,就是这样。

int spaces = 0; // define it in global scope, since unroll is a recursive function.
void unroll(const YAML::Node & node)
{
switch(node.Type())
{
    case YAML::NodeType::Map:       
    {
        for(auto it = node.begin(); it != node.end(); ++ it)
        {
            string s; it.first() >> s;
            indent();
            cout << s << "\n";
            const YAML::Node & dada = it.second();
            spaces ++;
            unroll(dada);
            spaces--;
            cout << "\n";
        }
        break;
    }

    case YAML::NodeType::Scalar:
    {
        indent();
        string s; node >> s;
        cout << "found scalar " << s << "\n";
        break;
    }
    case YAML::NodeType::Null:
    {
        indent();
        cout << "null";
        break;
    }
    case YAML::NodeType::Sequence:
    {
        //cout << "sequence";
        for(auto it = node.begin(); it != node.end(); ++ it)
        {
            string s; *it >> s;
            indent();
            cout << s << "\n";
        }
        break;
    }
    default: cout << "error: undefined";    break;
}
}
于 2012-03-29T17:05:54.993 回答