从node.js访问xml内容

时间:2015-10-12 16:39:47

标签: node.js marklogic

我在MarkLogic数据库中有一堆XML文档。 我正在使用node.js middletier,它需要将某个集合中所有xml文档的某些属性传递给JSON数组。

到目前为止,我有这个:

var marklogic = require('marklogic');
var my = require('./my-connection.js');

var db = marklogic.createDatabaseClient(my.connInfo);
var qb = marklogic.queryBuilder;

db.documents.query(
  qb.where(qb.collection("alert"))
).result( function(documents) {
    console.log('The alerts collection:')
    documents.forEach( function(document) {
      //console.log('\nURI: ' + document.uri);
      var aObj = document.content
      //var alert = aObj.getElementsByTagNameNS("http://example.com/sccs/alert","alert");
      console.log('Alert: ' + document.content);
    });
}, function(error) {
    console.log(JSON.stringify(error, null, 2));
}); 

这给了我内容。

示例结果:

Alert: <?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0"?>
<obj:object xmlns:obj="http://marklogic.com/solutions/obi/object">
  <obi:metadata xmlns:obi="http://marklogic.com/solutions/obi" createdBy="admin" createdDateTime="2015-09-23T20:42:48.562829Z" lastUpdatedBy="admin" lastUpdatedDateTime="2015-09-23T20:42:48.562829Z"/>
  <obj:label>Active</obj:label>
  <obj:type>alert</obj:type>
  <obj:id>41e718eb-a2e2-49e0-939a-68bb87c1e301</obj:id>
  <obj:content>
    <alert xmlns="http://example.com/sccs/alert">
      <obj:property sourceCount="1">
        <status>Active</status>
      </obj:property>
      <obj:property sourceCount="1">
        <position>{"type":"Point", "coordinates":[52.2, 4.3]}</position>
      </obj:property>
      <obj:property sourceCount="1">
        <scc:id xmlns:scc="http://example.com/sccs">2a65b4cc-acee-4675-a8ba-d8c5dfaac9dd</scc:id>
      </obj:property>
    </alert>
  </obj:content>
  <obj:workspaces>
    <obj:workspace id="Public"/>
  </obj:workspaces>
  <obj:sourceIds count="1">
    <source:id xmlns:source="http://marklogic.com/solutions/obi/source">42aebdc7-41aa-4695-b514-2bb63f85d47c</source:id>
  </obj:sourceIds>
</obj:object>

问题:

我想访问例如&#39; obj:content&#39;这个内容中的元素。

在查询控制台中,我可以通过以下方式执行此操作:

var alerts = fn.collection("alert").toArray();
var aXML = alerts[2].getElementsByTagNameNS("http://example.com/sccs/alert","alert");

我怎么能从node.js做到这一点?

(我不理解node.js中查询返回的对象类型)

1 个答案:

答案 0 :(得分:2)

MarkLogic node.js API将XML文档作为字符串返回;您需要使用XML解析器来查询,投影或处理该XML。在npm上有很多用于与XML交互的模块,参见

您可能会发现使用MarkLogic更容易使用服务器端转换,并首先将XML文档转换为JSON:http://docs.marklogic.com/guide/node-dev/extensions#id_78179