我无法理解如何设置字符集 内容类型不是text / html,text / plain或text / xml,而是application / x-www-form-urlencoded内容类型。
鉴于此(简化)javascript代码:
var xhr = new XMLHttpRequest();
如果我不明确设置编码,
xhr.open('POST', 'serv.php', true);
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
萤火虫告诉我内容
类型是“application / x-www-form-urlencoded; charset = UTF-8 。”
例如,如果我将charset设置为ISO-8859-1,
xhr.open('POST', 'serv.php', true);
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded; charset=ISO-8859-1');
firebug 仍然告诉我“application / x-www-form-urlencoded; charset = UTF-8 。”
如果我尝试类似
的话xhr.setRequestHeader('Content-Type', 'text/plain; charset=ISO-8859-1');
然后它尊重charset。
在所有情况下,send()方法都是这样的:
xhr.send('id=9&name=Yoda');
如果Content-Type是x-www-form-urlencoded,为什么不尊重我指定的字符集?
注意:我正在使用ISO-8859-1作为示例。我的目标是了解正在发生的事情。
答案 0 :(得分:12)
application/x-www-form-urlencoded
mime类型不支持参数(例如charset
)。如果您查看HTML5规范的this section,您将看到如何确定字符集(它很复杂)。特别是,本节底部有一个注释,提到如何将charset指定为mime类型的参数。