node环境下显示 XMLHttpRequest is not defined
时间: 2023-08-20 19:05:21 浏览: 179
Python 解决execjs._exceptions.ProgramError: ReferenceError: document is not defined报错问题
这个错误是因为 `XMLHttpRequest` 是浏览器环境中的一个内置对象,在 Node.js 环境下是不存在的。如果你需要在 Node.js 中进行网络请求,可以使用 Node.js 内置的 `http` 或 `https` 模块,或者使用第三方模块如 `axios` 或 `node-fetch`。如果你确实需要在 Node.js 中使用 `XMLHttpRequest`,可以尝试使用第三方模块如 `xhr2` 或 `xmlhttprequest`。
阅读全文