我正在尝试构建一个带有一个参数的 POST(带有 x-www-form-urlencoded 标头)的应用程序。这是我的 POST 方法代码:@RequestMapping(value = "/translate", method = RequestMethod.POST)public String getTranslate(@RequestParam("text") String text) { //................ }当我在方法 getTranslate 中使用 Postman 使用数据“让我们测量”(下图)进行 POST 请求时,文本值是“让我们测量”。我究竟做错了什么?
1 回答
慕莱坞森
TA贡献1810条经验 获得超4个赞
我猜您错过了在请求的标头中添加编码 - 只需添加内容类型和编码并尝试:
Content-Type:application/x-www-form-urlencoded;charset=UTF-8
添加回答
举报
0/150
提交
取消