C# XPathSelectElements returns null?
本文关键字:null returns XPathSelectElements | 更新日期: 2023-09-27 18:10:45
我有一个XML文档:
<xsd:form-definition xmlns:xsd="http://...m.xsd"
xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="....xsd" ...>
<xsd:page>
<xsd:formant source-name="label" id="guid1" />
<xsd:formant source-name="label id="guid2" />
<xsd:formant source-name="label" id="guid3">
<xsd:value>2013-04-24</xsd:value>
</xsd:formant>
</xsd:page>
</xsd:form-definition>
和c#代码,我想遍历特定的元素,并获得id
属性和value
(如果存在)-让我们说labels
。
XDocument xml = (document load);
XmlNamespaceManager ns = new XmlNamespaceManager(new NameTable());
ns.AddNamespace("f", "http://m.xsd");
foreach (XElement e in xml.XPathSelectElements("//f:formant[@source-name = 'label']", ns))
{
....
}
但是foreach
循环不返回任何元素。为什么?
适合我。检查名称空间f
和xsd
是否完全匹配。在你的例子中,它们不匹配。此外,在您的示例中还有一些其他语法错误,例如,第二个formant
的source-name
值没有以双引号结束。
XDocument xml = XDocument.Parse(
@"<xsd:form-definition xmlns:xsd=""http://m.xsd""
xmlns:ds=""http://www.w3.org/2000/09/xmldsig#""
xmlns:xsi=""http://www.w3.org/2001/XMLSchema-instance"">
<xsd:page>
<xsd:formant source-name=""label"" id=""guid1"" />
<xsd:formant source-name=""label2"" id=""guid2"" />
<xsd:formant source-name=""label"" id=""guid3"">
<xsd:value>2013-04-24</xsd:value>
</xsd:formant>
</xsd:page>
</xsd:form-definition>");
XmlNamespaceManager ns = new XmlNamespaceManager(new NameTable());
ns.AddNamespace("f", "http://m.xsd");
foreach (XElement e in xml.XPathSelectElements(
"//f:formant[@source-name = 'label']", ns))
{
Console.WriteLine(e);
}
Console.ReadLine();