如何在QtXml中调试QDomElement?

发布于 2024-11-29 00:46:10 字数 157 浏览 2 评论 0原文

我有一个QDomElement,我想调试它,即在调试控制台中将其视为纯文本。为了使用 qDebug() 输出它,它需要采用 QString 格式,但是我没有看到任何来自 QDomElement 或 QDomNode 的转换方法。

有什么想法吗?谢谢!

I've got a QDomElement, and I would like to debug it, i.e. see it as plain text in debug console. In order to output it with qDebug(), it needs to be in QString format, however I don't see any conversion method from a QDomElement nor a QDomNode.

Any idea? Thanks!

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

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

发布评论

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

评论(4

七色彩虹 2024-12-06 00:46:11

如果您#include QDebug 将充当 TextStream 本身。
即qDebug()<< lMyDomElement; 就足够了)

if you #include <QDebug> QDebug would act as TextStream itself.
i.e. qDebug()<< lMyDomElement; would be enough)

淑女气质 2024-12-06 00:46:11

我也遇到过类似的情况,在这种情况下,我最好的选择是利用 QDomElement 所属的 QDomDocument 。所以我想说你无法直接访问QDomElement,但你可以使用QDomDocument 来实现。

为此,您需要确保您的 QDomDocument 使用最新的 QDomElement 进行更新,然后使用 QDomDocument::toString() 这将返回您整个文档作为 QString。

这是Qt 参考

希望这有帮助。

Well I also come across similar situations, in that case my best bet is to make use of the QDomDocument which this QDomElement is part of. So I would say you cannot get a direct way to access the QDomElement but you can achieve that using the QDomDocument.

For this you need to ensure that your QDomDocument gets updated with the recent QDomElement and then use QDomDocument::toString() which would return you the whole document as a QString.

Here is the Qt reference.

Hope this helps.

凝望流年 2024-12-06 00:46:10

没有用于将 DOM 元素流式传输到 QDebug 的内置运算符。你可以很容易地写一个,比如:

QDebug operator<<(QDebug dbg, const QDomNode& node)
{
  QString s;
  QTextStream str(&s, QIODevice::WriteOnly);
  node.save(str, 2);
  dbg << qPrintable(s);
  return dbg;
}

There is no built-in operator for streaming DOM elements to QDebug. You could write one easily enough, something like:

QDebug operator<<(QDebug dbg, const QDomNode& node)
{
  QString s;
  QTextStream str(&s, QIODevice::WriteOnly);
  node.save(str, 2);
  dbg << qPrintable(s);
  return dbg;
}
掀纱窥君容 2024-12-06 00:46:10

使用QTextStream:

QTextStream lTS(stdout);
lTS << lMyDomElement;

Use QTextStream:

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