我需要在 JavaScript 中解析从 REST Web 服务接收到的 XML,格式如下,并将信息放在网格中以在网页上显示。我找了几个例子,但是,这种 XML 格式不是典型的……有人可以帮我吗?只需要一个点开始......
非常感谢!
<root tablename="center">
<row>
<row_attribute name="cod">1100</row_attribute>
<row_attribute name="nom">name1</row_attribute>
<row_attribute name="cod2">TGN</row_attribute>
</row>
<row>
<row_attribute name="cod">1200</row_attribute>
<row_attribute name="nom">name2</row_attribute>
<row_attribute name="cod2">TGT</row_attribute>
</row>
</root>