使用包含冒号/命名空间的元素解析 XML
使用 Xml 解析 Google Apps 脚本中的 XML 文档: http://code.google.com/googleapps/appsscript/articles/XML_tutorial .html#HowItWorks
但是,如果元素名称中存在冒号,则此方法不起作用(解析失败)。 尽管它可能是命名空间,但它是整个 XML 文档中的单个命名空间。
<aws:elementname>...</aws:elementname>
这只是谷歌的 Xml 的问题还是通用的?
Using Xml to parse an XML document in Google Apps Script :
http://code.google.com/googleapps/appsscript/articles/XML_tutorial.html#HowItWorks
But this doesn't work (parse fails) if there is a colon in the element name.
Even though it maybe the namespace, its a single namespace throughout the XML document.
<aws:elementname>...</aws:elementname>
Is this is an issue only with the google's Xml or is it generic ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只是不要将论点视为正确。
Just don't send argument as true.
这绝对不是一个普遍问题。当然有处理名称空间的 XML 解析器。
我怀疑这是教程代码的限制,并且 google 库实际上可以处理名称空间,但这在查看 API 文档时有些猜测。
教程代码使用的调用
似乎是非命名空间感知版本。
此方法有一个重载,它也采用命名空间 URL,如果涉及命名空间,您可能需要使用该方法。
It is definitely not a general issue. There certainly are XML parsers that handle namespaces.
I suspect it's a limitation of the tutorial code and that the google libraries actually can handle namespaces, but it's somewhat guesswork from looking at the API docs.
The tutorial code is using calls like
which seems to be a non-namespace-aware version.
There is an overload of this method that takes a namespace URL as well, and which you might need to use if there's a namespace involved.
如果你想使用某个命名空间,你必须首先声明它。例如:
If you want to use some namespace, you have to first declare it. E.g.: