描述:
在使用postman测试接口的时候,结果正常返回,但是乱码了,这个一般都是编码集设定的问题,后端接口是使用的springmvc
@Controller
public class TestController(){
@RequestMapper("/test8")
@ResponseBody
public String test(){
retur "程序执行成功";
}
}
解决办法:
在请求头中设置编码集信息:
Content-type:application/json;charset-UTF-8
Accept:application/json;charset-UTF-8
文章来源:https://www.toymoban.com/news/detail-699751.html
文章来源地址https://www.toymoban.com/news/detail-699751.html
到了这里,关于postman返回值乱码的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!