pugixml“扩展”增加价值的元素
我尝试设置元素的值,当元素看起来像这样
时,我只是这样做:
pugi::xml_node node = xmlBase.child("element");
pugi::xml_node nodechild = node.first_child();
nodechild.set_value(this->elementValue);
但是,当我有一个看起来像这样的元素时
<element />
:不起作用..我尝试在“set_value”行之前使用它
if(nodechild == NULL)
{
nodechild = node.append_child();
}
,但这会在该元素内创建一个新元素,而且我不想这样做,
也许我的第一个方法甚至是错误的? 如何正确设置元素的值?
I trying to set the value of an element, regulary when the element looks like this <element></element>
I just do this :
pugi::xml_node node = xmlBase.child("element");
pugi::xml_node nodechild = node.first_child();
nodechild.set_value(this->elementValue);
But, when I have an element looking like this:
<element />
this wont work.. i tried using this before the "set_value" row
if(nodechild == NULL)
{
nodechild = node.append_child();
}
but this will create a new element within that element, and I dont want to do this,
Perhaps my fist approach is even wrong?
how do you properly set the value of the element?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
似乎解决方案是这样做:
这将创建一个元素内仅包含纯文本的子元素
Seems like the Solution is to do this:
this will create a child thats only plain text within the element