我想修改ajax请求字符串编码格式。但是发现不管前台怎么改格式,后台必须用utf-8格式解码。
后来google了一下就出来了。
发现
The W3C XMLHttpRequest specification dictates that the charset is always UTF-8; specifying another charset will not force the browser to change the encoding
这个问题浪费了我半天时间,希望可以帮助别人
注意:以上说的参数编码是$.post(url,params) 里面的params 而不是get里面的url后面跟的参数 那个应该得用8895-1解码
原文链接:https://www.f2er.com/ajax/162571.html