我做过研究。如果这是一个重复的问题,我深表歉意,但其他问题的解决方案并不适合我,因此,我提出了一个新问题。
用 Javascript 比较两个集合的最佳方法是什么?
我有数千个这种 Mongo 文档格式的标题:
{
"url": "google.com",
"headers": {
"location": "http://www.google.com/",
"content-type": "text/html; charset=UTF-8",
"date": "Mon, 25 Mar 2013 18:12:08 GMT",
"expires": "Wed, 24 Apr 2013 18:12:08 GMT",
"cache-control": "public, max-age=2592000",
"server": "gws",
"content-length": "219",
"x-xss-protection": "1; mode=block",
"x-frame-options": "SAMEORIGIN"
}
}
我今天跑了我的刮刀。将来,我会再次运行它,并将其存储在第二个集合中。此外,我希望能够比较三个特定的标头对象,即server
、x-aspnet-version
和x-powered-by
,并检测是否有任何整数增量。
遍历两个集合并执行 diff() 的最佳方法是什么?
我做对了吗?任何建议将不胜感激。