我得到了 xml 中的 Web 服务响应。
<Items>
<Item>
<SmallImage>
<Url>http://xxx<url>
<height></height>
<weight></weight>
</SmallImage>
<LargeImage>
<Url>http://xxx<url>
<height></height>
<weight></weight>
</LargeImage>
<ItemAttributes>
<Binding>Apparel</Binding>
<Brand>Calvin Klein Jeans</Brand>
<Department>mens</Department>
<Title>Calvin Klein Jeans Men's Rusted Antique Skinny Jean</Title>
</ItemAttributes>
<SimilarProducts>
<SimilarProduct>
<ASIN>B0018QK10E</ASIN>
<Title>New Balance Men's M574 Sneaker</Title>
</SimilarProduct>
</SimilarProducts>
</Item>
</Items>
在这里,我只需要显示标题。项目->项目->项目属性->标题
我试过这样。
#region Product Title
var Title = xd.Descendants(ns + "Item").Select(b => new
{
PTitle = b.Element(ns + "ItemAttributes").Element(ns + "Title").Value
}).ToList();
#endregion
但它返回 Object null。请让我知道您需要更多信息。提前致谢。