猿问

Spring - 使用 x-www-form-urlencoded 错误编码 POST 请求

我正在尝试构建一个带有一个参数的 POST(带有 x-www-form-urlencoded 标头)的应用程序。这是我的 POST 方法代码:


@RequestMapping(value = "/translate", method = RequestMethod.POST)

public String getTranslate(@RequestParam("text") String text) {

     //................      

}

当我在方法 getTranslate 中使用 Postman 使用数据“让我们测量”(下图)进行 POST 请求时,文本值是“让我们测量”。我究竟做错了什么?


智慧大石
浏览 164回答 1
1回答

慕莱坞森

我猜您错过了在请求的标头中添加编码 - 只需添加内容类型和编码并尝试:Content-Type:application/x-www-form-urlencoded;charset=UTF-8
随时随地看视频慕课网APP

相关分类

Java
我要回答