文件读取中文乱码:
读取CSV文件,出现中文乱码,纠正方式如下:
txt文件乱码
在用到该变量的请求上加上UTF-8
post请求 返回“ Content type 'application/x-www-form-urlencoded;charset=UTF-8' not supported”
问题现象
查看请求发现,请求头的content-Type
添加信息头, 将Content-Type 修正为 application/json;charset=UTF-8,得以解决
文件读取中文乱码:
读取CSV文件,出现中文乱码,纠正方式如下:
txt文件乱码
在用到该变量的请求上加上UTF-8
post请求 返回“ Content type 'application/x-www-form-urlencoded;charset=UTF-8' not supported”
问题现象
查看请求发现,请求头的content-Type
添加信息头, 将Content-Type 修正为 application/json;charset=UTF-8,得以解决