C ++ pugiXML,在节点中的第一个子节点之前追加子节点

时间:2016-03-26 20:20:26

标签: c++ xml pugixml

如何将新孩子添加到节点并将其放在第一个孩子之前?即我想尝试添加一个新的孩子并按顺序将其推到顶部。

说,如果我有:

pugi::xml_node root; 
pugi::xml_node level1 = root.append_child("Level1");
pugi::xml_node level2 = root.append_child("Level2");
pugi::xml_node level3 = root.append_child("Level3");

我可以以某种方式附加一个新节点level4并将其放在XML树中的level1节点之前吗?

2 个答案:

答案 0 :(得分:1)

您可以使用root.insert_child_before("Level4", root.first_child())

它的评价者不同寻常,因为每个孩子都有不同的标签名称。一种更常见的格式是让所有孩子都具有相同的名称,并设置属性以区分彼此。

如何做到这一点的一个例子:

int main()
{
    pugi::xml_document doc;
    pugi::xml_node root = doc.append_child("levels");

    root.append_child("level").append_attribute("id").set_value("L01");
    root.last_child().append_child("description").text().set("Some L01 stuff");

    root.append_child("level").append_attribute("id").set_value("L02");
    root.last_child().append_child("description").text().set("Some L02 stuff");

    // now insert one before the first child
    root.insert_child_before("level", root.first_child()).append_attribute("id").set_value("L00");
    root.first_child().append_child("description").text().set("Some L00 stuff");

    doc.print(std::cout);
}

<强>输出:

<levels>
    <level id="L00">
        <description>Some L00 stuff</description>
    </level>
    <level id="L01">
        <description>Some L01 stuff</description>
    </level>
    <level id="L02">
        <description>Some L02 stuff</description>
    </level>
</levels>

答案 1 :(得分:1)

有人刚刚让我做prepend_child。仍然感谢Galik的建议。