为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

智慧大石 2022-07-14 09:24:07
我正在尝试构建一个带有一个参数的 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


查看完整回答
反对 回复 2022-07-14
  • 1 回答
  • 0 关注
  • 163 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信