从一个类似的问题我发现了XPath并且它看起来非常快,但我无法在Node.js中使用它:
> var xp = new XPathEvaluator();
ReferenceError: XPathEvaluator is not defined
at repl:1:14
at REPLServer.self.eval (repl.js:110:21)
at repl.js:249:20
at REPLServer.self.eval (repl.js:122:7)
at Interface.<anonymous> (repl.js:239:12)
at Interface.EventEmitter.emit (events.js:95:17)
at Interface._onLine (readline.js:202:10)
at Interface._line (readline.js:531:8)
at Interface._ttyWrite (readline.js:760:14)
at ReadStream.onkeypress (readline.js:99:10)
我可以以某种方式将其安装为模块吗?还是有替代方案吗? 问题是我正在下载几个RSS源,共有大约900个条目。我正在下载它们不到一秒钟,但是使用jQuery迭代每个元素
$(xml).find('entry').each(function() { });
...需要10-15秒,这对于Web服务是不可接受的。有什么建议吗?
答案 0 :(得分:1)
如果您对node.js有任何需要,请首先点击http://npmjs.org,看看它是否已经存在。对于像XPath遍历这样的常见事情,通常会这样做。在这种情况下:https://npmjs.org/package/xpath