带斜杠的 XML 根节点...无法解释?

发布于 2024-09-11 19:26:49 字数 205 浏览 4 评论 0原文

为什么 XML 文档中的根节点看起来像这样:

<return/>

为什么那里有斜杠?我从未见过这样的 XML 文档,但是在我正在调试的应用程序中,创建了一个像这样的根节点,并且附加任何子节点似乎都失败了。

删除斜线会使程序崩溃。

它在windows下使用C++中的MSXML DOM。

Why would you have a rootnode in an XML document that looks like this:

<return/>

Why is that slash there? I have never seen an XML document like this, however in an application I am debugging, a root node looking like this one is created, and appending any child nodes seems to be failing.

Removing the slash crashes the program.

It uses MSXML DOM in C++ under windows.

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

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

发布评论

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

评论(2

烏雲後面有陽光 2024-09-18 19:26:49

相当于 。这称为空元素。如果没有结束 /,开始标记将没有相应的结束标记,因此会出现错误。

<foo/> is equivalent to <foo></foo>. This is known as an empty element. Without the ending /, the open tag will not have a corresponding closing tag, and thus an error.

思念满溢 2024-09-18 19:26:49

这是 xml 文档的根节点,它没有子元素。这就是为什么它没有结束标签。

That is the root node of the xml document and it has no child elements. That's why it has no ending tag.

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