這是我的代碼:XMLHttpRequest的模塊/發現
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在這裏和那裏的問題,但我的節點安裝是正確的,所以我不知道問題是什麼。
使用'http'代替 – Tushar