Boost.PropertyTree 中的属性是如何解析的?

发布于 2024-09-18 08:02:00 字数 241 浏览 5 评论 0原文

假设我有以下 XML 格式:

<Widget type="SomeWidget" name="foo">
   <Event name="onmouseover">
      dostuff();
   </Event>
</Widget>

How do I read the attribute using Boost.PropertyTree?

Say I have this XML format:

<Widget type="SomeWidget" name="foo">
   <Event name="onmouseover">
      dostuff();
   </Event>
</Widget>

How do I read the attributes using Boost.PropertyTree?

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

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

发布评论

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

评论(2

在巴黎塔顶看东京樱花 2024-09-25 08:02:00

如果 xml 有这样的内容:

<mode fullscreen="true">mode xxx</mode>

使用 boost::property 代码:

get<string>("mode.<xmlattr>.fullscreen") 

哦,是的,它很难看!

If xml has such content:

<mode fullscreen="true">mode xxx</mode>

Use boost::property code:

get<string>("mode.<xmlattr>.fullscreen") 

Oh yeah, it's ugly!

墨洒年华 2024-09-25 08:02:00

如果您的问题是获取属性:

XML 元素的属性是
存储在子项中。那里
是每个属性一个子节点
属性节点。的存在
节点不被保证或者
当没有必要时
属性。

来自文档 http:// /www.boost.org/doc/libs/1_44_0/doc/html/boost_propertytree/parsers.html#boost_propertytree.parsers.xml_parser

所以只需从 键获取它们在路径中。

If your problem is to get attributes:

The attributes of an XML element are
stored in the subkey . There
is one child node per attribute in the
attribute node. Existence of the
node is not guaranteed or
necessary when there are no
attributes.

From the doc http://www.boost.org/doc/libs/1_44_0/doc/html/boost_propertytree/parsers.html#boost_propertytree.parsers.xml_parser

So just get them from the <xmlattr> key in the path.

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