Ajax异步请求,中文乱码问题处理
程序员文章站
2022-03-09 21:51:32
...
Ajax异步请求,中文乱码问题处理
1.在javascript中:
有以下解码函数:
js 中提供encodeUri/decodeUri,espase,decodeComponentUri这些方法对中文进行编码解码,需要注意的是这些函数都是默认按照utf-8字符集,进行解码和编码的
encodeUrl和decodeUrl:
1.基本概念
encodeURI和decodeURI是成对来使用的,因为浏览器的地址栏有中文字符的话,可以会出现不可预期的错误,所以可以encodeURI把非英文字符转化为英文编码,decodeURI可以用来把字符还原回来。encodeURI方法不会对下列字符进行编码:":"、"/"、";" 和 "?",encodeURIComponent方法可以对这些字符进行编码。
decodeURI()方法相当于java.net.URLDecoder.decode(URIString, "UTF-8");
encodeURI()方法相当于java.net.URLEncoder.encode(URIString, "UTF-8");
2.例子
<script type="text/javascript">var uriStr = "http://www.baidu.com?name=张三&num=001 zs";
var uriec = encodeURI(uriStr);
document.write("编码后的" + uriec);
var uridc = decodeURI(uriec);
document.write("解码后的" + uridc);
</script>
编码后的http://www.baidu.com?name=%E5%BC%A0%E4%B8%89&num=001%20zs
encodeURI和decodeURI是成对来使用的,因为浏览器的地址栏有中文字符的话,可以会出现不可预期的错误,所以可以encodeURI把非英文字符转化为英文编码,decodeURI可以用来把字符还原回来。encodeURI方法不会对下列字符进行编码:":"、"/"、";" 和 "?",encodeURIComponent方法可以对这些字符进行编码。decodeURI()方法相当于java.net.URLDecoder.decode(URIString, "UTF-8");
encodeURI()方法相当于java.net.URLEncoder.encode(URIString, "UTF-8");
2.例子
<script type="text/javascript">
var uriStr = "http://www.baidu.com?name=张三&num=001 zs";
var uriec = encodeURI(uriStr);
document.write("编码后的" + uriec);
var uridc = decodeURI(uriec);
document.write("解码后的" + uridc);
</script>
编码后的http://www.baidu.com?name=%E5%BC%A0%E4%B8%89&num=001%20zs
解码后的http://www.baidu.com?name=张三&num=001 zs
2.后台传递到前台的中文乱码,解决:
response.setContentType("text/html;charset=utf-8");
如果是json数据,需要设置为("text/javascript;charset=utf-8");
response.setcharEncoding("utf-8");
加上这两行,再向前台写回数据,就不会乱码
3. ajax 获取前台form中的数据中文乱码解决
加上contentType,这样送到后台的中文数据就不会出现乱码,或者使用scriptCharset: 'utf-8'
<script type="text/javascript">
var uriStr = "http://www.baidu.com?name=张三&num=001 zs";
var uriec = encodeURI(uriStr);
document.write("编码后的" + uriec);
var uridc = decodeURI(uriec);
document.write("解码后的" + uridc);
</script>
$.ajax({
contentType: "application/x-www-form-urlencoded; charset=utf-8",
});
上一篇: 关于ajax的异步请求问题
下一篇: 着眼访问模式 解惑网上邻居故障