0

我有一个 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循环不返回任何元素。为什么 ?

4

1 回答 1

2

这个对我有用。检查您的命名空间是否f完全xsd匹配。在您的示例中,它们不匹配。此外,您的示例中还有一些其他语法错误,例如source-name第二个的值formant不以双引号结尾。

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();
于 2013-04-24T11:12:25.927 回答