0

我正在使用 Visual Studio for Windows Phone,当 XML 数据的父级中有属性时,我的 XML 阅读器代码不起作用。

我的 C# 代码

namespace youtube_xml
{
  public partial class MainPage : PhoneApplicationPage
  {
    // Constructor
    public MainPage()
    {
        InitializeComponent();
        SupportedOrientations = SupportedPageOrientation.PortraitOrLandscape;
    }
    private void listBox1_Loaded(object sender, RoutedEventArgs e)
    {
        var element = XElement.Load("Authors.xml");
        var authors =
        from var in element.Descendants("feed")
        select new Authors
        {
            AuthorName = var.Attribute("scheme").Value,
        };

        listBoxAuthors.DataContext = authors;
    }
    public ImageSource GetImage(string path)
    {
        return new BitmapImage(new Uri(path, UriKind.Relative));
    } 
  }
}

工作 XML 数据

<?xml version='1.0' encoding='UTF-8'?>
<feed>
  <category scheme='http://schemas.google.com/g/2005#kind'/>
</feed>

不工作的数据(注意:根元素“feed”中的属性“xmlns”)

<?xml version='1.0' encoding='UTF-8'?>
<feed xmlns='http://www.w3.org/2005/Atom' >
  <category scheme='http://schemas.google.com/g/2005#kind'/>
</feed>
4

1 回答 1

1

欢迎来到XML 命名空间的世界!问题不在于“有一个属性”这一事实——而是它导致它下面的所有东西都在一个命名空间中。你不能再说.Attribute("scheme")了,因为那只会在空的命名空间中寻找东西。命名空间是通过基于运算符重载的装置来使用的:

XNamespace atom = "http://www.w3.org/2005/Atom'";

// And now you can say:

.Descendants(atom + "feed")
.Attribute(atom + "scheme")

等等。将字符串分配给 XNamespace 变量的能力归功于隐式转换运算符。这里+实际上构造了一个 XName (顺便说一下,它也有一个从字符串的隐式转换 - 这就是为什么.Elements("feed")即使参数类型不是字符串你也可以正常工作的原因)

实用提示:您可以将属性转换为某些类型,而不是使用.Value,例如(string)foo.Attribute(atom + "scheme")。它也适用于许多其他类型,例如int.

于 2012-12-30T23:22:48.123 回答