最佳答案
这是我的暗号:
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'
When I remove the first line, I am getting:
XMLHttpRequest is not defined
我搜索了所有地方,人们到处提到 Node.js 的问题,但我的 Node 安装是正确的,所以我不确定问题是什么。