content/hifi-content/milad/ROLC/Organize/Projects/Hifi/Scripts/testxhr/xhrServerScript.js
2022-02-14 02:04:11 +01:00

11 lines
No EOL
411 B
JavaScript

(function () {
this.preload = function() {
var POST_URL = "https://neuroscape.glitch.me/json/";
var testData = { test: "test" };
var req = new XMLHttpRequest();
req.responseType = 'json';
req.open("POST", POST_URL, false);
req.setRequestHeader("Content-Type", "application/json;charset=UTF-8");
req.send(JSON.stringify(testData));
};
});