标签:utf-8 request content mamicode rod 浏览器 指定 details pre
乱码原因:没有给客户端浏览器指定响应的编码格式,浏览器会默认使用ios-8859-1来对传递过来的数据进行解码
content-type解释:https://blog.csdn.net/chenzuen113113/article/details/80904590
我的解决办法:加一个 produces
@ResponseBody @RequestMapping(value = "/helllo",produces="text/html;charset=UTF-8")
没使用前
使用后:
标签:utf-8 request content mamicode rod 浏览器 指定 details pre
原文地址:https://www.cnblogs.com/19322li/p/12835741.html