嗯,我有代码
pugi::xml_node text = doc.child("text").child("girl");
for (int i = 0; i < situations.size(); i++)
{
std::cout << situations[i] << std::endl;
text = text.child(situations[i].c_str()); // problem
}
在该代码之后,我无法从文本中获取任何值,但可以直接使用 like
doc.child("text").child("girl").child_value("day1")
正在工作中。需要帮忙。谢谢。