-1

以下のような出力が必要ですが、どうすればよいですか?

       name1
         title1
         title2

       name2
         title1
         title2

そのforループでは、タイトルを表示する必要があります。ここでは、以下のコードを使用しました。これは、次のエラーが発生することを意味します。

'char' does not contain a definition for 'Attribute' and no extension method 'Attribute' accepting a first argument of type 'char' could be found (are you missing a using directive or an assembly reference

上記のエラーを解決するにはどうすればよいですか?また、タイトルを表示するためのforループ内に条件を書き込むにはどうすればよいですか?

私はこのコードを使用しました:

   XmlSerializer serializer = new XmlSerializer(typeof(Notchs));
   XDocument xmlDoc = XDocument.Parse(dataInXmlFile);
   var Categories = (from Category in xmlDoc.Descendants("Category")
               select new Notch()
               {
                       name = (string)Category.Attribute("name"),
                       title =  Category.Elements("Articles").Elements("article").ToString()            
               }).ToList();
       foreach(var doc in Categories)
        {
            foreach(var sec in doc.title)
            {
                sec.Attribute("title").Value.ToList(),
            }
        }
        NotchsList.ItemsSource = Categories.ToList();

XML

<Categories>
  <Category name="notchbolly">
   <Articles>
   <article articleid="170" title="Colour And Vibrancy Are Part Of Our DNA">...</      article>
   <article articleid="187" title="German chef gets saucy!!">...</article>
   <article articleid="2004" title="Meet-the-Face-of-Compassion">...</article>
   <article articleid="2005" title="Dutt’s-family-gets-together!">...</article>
   <article articleid="1933" title="NOTCH easy to do recipe- Mushroom Risotto with   truffles">...</article>
   <article articleid="1934" title="NOTCH easy to do recipe- Lobster with Black ink Linguini Arabiatta">...</article>
  <article articleid="1935" title="Yash Birla- 100% Living">...</article>
  </Articles>
</Category>
<Category name="notchfashion">
  <Articles>
  <article articleid="81" title="Making Headlines">...</article>
  <article articleid="99" title="Ladakh through my Lens">...</article>
  <article articleid="689" title="A-Family-Affair">...</article>
  <article articleid="2264" title="Sushmita-back-with-Manav?">...</article>
  <article articleid="70" title="NOTCH- Making of the cover- Farhan Akhtar & Javed Akhtar">...</article>
   <article articleid="78" title="NOTCH easy to do recipe- Aubergine Carpaccio">...       </article>
  <article articleid="1935" title="Yash Birla- 100% Living">...</article>
 </Articles>
</Category>

4

1 に答える 1

5

コードtitleプロパティには文字列があり、文字列のリストではありません。したがって、inner foreachでは、文字列charをcharごとに列挙しようとしています。またchar、ループ内の属性から属性を取得するのに苦労しています。そしてもちろん、そうでcharはありませんXElement、それはAttribute方法を持っていません。

代わりに文字列のリストを使用してください(プロパティにはPascalCase名を使用してください)。

// why are you named class Notch? use Category!
public class Notch 
{
    public string Name { get; set; }
    public List<string> Titles { get; set; }
}

そのようなもの(あなたのxmlを見ずに確実に言うことはできません):

XDocument xmlDoc = XDocument.Parse(dataInXmlFile);
var Categories = 
    (from Category in xmlDoc.Descendants("Category")
     select new Notch()
     {
         Name = (string)Category.Attribute("name"),
         Titles = Category.Element("Articles").Elements("article")
                          .Select(a => (string)a.Attribute("title")).ToList()
     }).ToList();

 foreach(var category in Categories)
 {
    foreach(var title in category.Titles)
    {
         // use title
    }
 }

NotchsList.ItemsSource = Categories.ToList();

もう1つのアドバイス-短いスコープの変数(Linqクエリの範囲変数など)には短い名前を使用します。したがって、たとえば上記では、Category変数の代わりにsimpleを使用できますc

更新xmlにエスケープされていないアンパサンドがあることに注意してください。アンパサンドはでエスケープする必要があり&amp;ます。

于 2013-02-20T09:09:16.487 に答える