我需要将我的字符编码更改为EUC-JP
这是我的代码:
formData.append("send", "送信");
var xhr = new XMLHttpRequest();
xhr.open("POST", "foo.php", false);
xhr.setRequestHeader("Content-type", "text/html; charset=euc-jp");
xhr.send(formData);
我刚刚了解到:
发送 FormData() 对象时,无法设置
Content-Type
。
和
默认编码为
UTF-8
由于UTF-8
编码,我无法在 foo.php 上收到正确的日语字符。