-2
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
console.log("excel download");
}
};
xhttp.open("POST", "exportGraphExcel", true);
xhttp.setRequestHeader("Content-type", "application/msexcel");
xhttp.send('graphName=graphakki');
ブラウザで400のステータスを示します。 Content-typeが "application/x-www-form-urlencoded"に変更された場合、要求は受け入れられます。必須の文字列パラメータ 'graphName'が存在しません
本当に質問ですか?それは何ですか? –