使用 fetch 比较 2 个页面的 HTML

Compare the HTML of 2 pages using fetch

我正在尝试比较 2 个 URL,这两个 URL 应该是相同的,但由于某种原因,我发现它们存在一些差异。我想知道我是否对 NPM fetch 有一些基本的误解。

这是我的示例代码:

const fetch = require('node-fetch');

let startingPageBase = await fetch('https://www.example.com')
let startingPage = await startingPageBase.text()

let currentPageBase = await fetch('https://www.example.com')
let currentPage = await currentPageBase.text()

if (startingPageBase === currentPageBase) {
   console.log('Checked ')
} else {
   console.log('Not the same')
}

我基本上是想检查 2 个页面的 HTML 是否相同。

您正在比较两个承诺,而不是实际的文本值。

这样做:

if (startingPage === currentPage) {
  console.log('Checked ')
} else {
  console.log('Not the same')
}