QDomDocument 不会插入 QDomElement

发布于 2024-11-26 14:54:45 字数 684 浏览 2 评论 0原文

我正在用 XML 做一些事情,但现在我很困惑。 这段代码工作完美:

    QDomElement new_item = doc.createElement(name);

    new_item.setAttribute("type", value.typeName());
    new_item.setAttribute("value", value.toString());

    doc.elementsByTagName(section).at(0).appendChild(new_item);

但是如果我自己创建 QDomElement (不调用 createElement 方法),那么它不会插入到文档中。像这样的东西不起作用:

    QDomElement new_item;

    new_item.setTagName(name);
    new_item.setAttribute("type", value.typeName());
    new_item.setAttribute("value", value.toString());

    doc.elementsByTagName(section).at(0).appendChild(new_item);

任何人都可以向我解释为什么我需要使用 createElement 方法吗?

谢谢 :)

I'm doing something with XML and now I'm confused.
This code works perfectly:

    QDomElement new_item = doc.createElement(name);

    new_item.setAttribute("type", value.typeName());
    new_item.setAttribute("value", value.toString());

    doc.elementsByTagName(section).at(0).appendChild(new_item);

But if I would create QDomElement myself (without calling createElement method), then it doesn't get inserted into the document. Something like this doesn't work:

    QDomElement new_item;

    new_item.setTagName(name);
    new_item.setAttribute("type", value.typeName());
    new_item.setAttribute("value", value.toString());

    doc.elementsByTagName(section).at(0).appendChild(new_item);

Can anyone explain to me why I need to use createElement method ?

Thank you :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ヅ她的身影、若隐若现 2024-12-03 14:54:45

基本上,DomElement 创建需要 QDomDocument 拥有的信息。来自 Qt 4.7 文档

由于元素、文本节点、注释、处理指令等不能存在于文档上下文之外,因此文档类还包含创建这些对象所需的工厂函数。创建的节点对象有一个ownerDocument()函数,该函数将它们与创建它们的上下文中的文档相关联。

http://doc.qt.io/archives/qt-4.7/qdomdocument .html#details(第三段)

Basically DomElement creation needs information that QDomDocument has. From Qt 4.7 documentation

Since elements, text nodes, comments, processing instructions, etc., cannot exist outside the context of a document, the document class also contains the factory functions needed to create these objects. The node objects created have an ownerDocument() function which associates them with the document within whose context they were created.

http://doc.qt.io/archives/qt-4.7/qdomdocument.html#details (third paragraph)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文