WP7 Linq to XML 按名称获取 XElement 的子元素
我知道这是一个有点简单的问题,但即使在查看了 SO 和 LINQ to XML 教程的答案后,我也无法使其发挥作用。我使用的是 Windows Phone 7,但我认为这不会有什么不同。
我的 XML 如下所示:
<response xmlns="http://anamespace.com/stuff/">
<error code="ERROR_CODE_1">You have a type 1 error</error>
</response>
我将上面的 XML 加载到 XElement 中。我想得到“错误”节点。 这个问题表示您需要处理命名空间。我已经尝试过使用和不使用名称空间的查询,但无论哪种方式都不起作用。
带命名空间的查询:
private object ParseElement(XElement responseElement)
{
XNamespace ns = "http://anamespace.com/stuff/";
IEnumerable<XElement> errorNodes = from e in responseElement.Elements(ns + "error") select e;
}
不带命名空间的查询:
private object ParseElement(XElement responseElement)
{
IEnumerable<XElement> errorNodes = from e in responseElement.Elements("error") select e;
}
errorNodes 变量永远不会被 XElement 填充。我读过的教程都使用这种表示法按名称选择元素,但它对我不起作用。
I know this is a somewhat easy question, but I haven't been able to make it work even after looking at answers on SO and LINQ to XML tutorials. I'm using Windows Phone 7, but I don't think that should make a difference.
I have XML that looks like this:
<response xmlns="http://anamespace.com/stuff/">
<error code="ERROR_CODE_1">You have a type 1 error</error>
</response>
I have the XML above loaded into an XElement. I want to get the "error" node. This question says you need to handle the namespace. I've tried my query with and without the namespace and it doesn't work either way.
Query with namespace:
private object ParseElement(XElement responseElement)
{
XNamespace ns = "http://anamespace.com/stuff/";
IEnumerable<XElement> errorNodes = from e in responseElement.Elements(ns + "error") select e;
}
Query without namespace:
private object ParseElement(XElement responseElement)
{
IEnumerable<XElement> errorNodes = from e in responseElement.Elements("error") select e;
}
The errorNodes variable never gets populated with XElements. The tutorials I've read all use this notation for selecting an element by name, but it's not working for me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
此代码在我的机器上运行™:
不过,我的机器运行常规 .NET 4,因此也许您可以运行此代码并检查它是否适用于 WP7。
This codes Works on my Machine™:
My machine runs regular .NET 4 though, so maybe you can run this code and check if it works for WP7.
您有可能正在阅读整个文档而不是
error
元素吗?如果您使用
后代
而不是元素
,它可以工作吗?Any chance you're reading the whole document instead of the
error
elements?Does it work if you use
Descendants
instead ofElements
?