XMLHttpRequest 模块未定义/找到
2022-08-30 05:20:40
这是我的代码:
var XMLHttpRequest = require("xmlhttprequest").XMLHttpRequest;
var xhr = new XMLHttpRequest();
xhr.open("GET", "//URL")
xhr.setRequestHeader("Content-Type: application/json", "Authorization: Basic //AuthKey");
xhr.send();
我收到错误:
Cannot find module 'xmlhttprequest'
当我删除第一行时,我得到:
XMLHttpRequest is not defined
我已经搜索了整个,人们提到了Node的问题.js这里和那里,但我的Node安装是正确的,所以我不确定问题是什么。