org.springframework.web.HttpMediaTypeNotSupportedException: Content type 'application/x-www-form-url

org.springframework.web.HttpMediaTypeNotSupportedException: Content type 'application/x-www-form-urlencoded;charset=UTF-8' not supported

异常原因:后端接口API需要的参数格式为json,但我们前端提交的数据格式为form表单。


此异常 是我在做支付宝支付的时候遇到的,有两种办法可以解决,如下所示:

修改方法一:把接口API的参数接收格式修改为接收form表单。

把红色注解@RequestBody 去掉,因为此注解表示j接收的参数格式为json

@Api(description = "支付宝相关接口")
@RestController
@RequestMapping("/alipay")
public class AlipayController {

@Resource
private AlipayService alipayService;

@ApiOperation(value = "支付宝支付")
@PostMapping(value = "pay", produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
public void pay(
@Validated @RequestBody TripOrderPay order,
HttpServletRequest request, HttpServletResponse response)
throws AlipayApiException, IOException {

String result = alipayService.alipayTradePagePay(order.getOut_trade_no(), order.getTotal_amount(), order.getSubject(), order.getBody());
response.setContentType("text/html; charset=utf-8");
response.getWriter().print(result);

}

}


修改方法二:传递的参数格式转换为 json 格式,http请求头设置为 content-type : application/json;charset=UTF-8

$.ajax({
    type: "POST",
    contentType: "application/json;charset=UTF-8",
    url: "/alipay/pay",
    data: JSON.stringify(data.field),
    dataType: 'json',
    success: function(result) {
        if(result.code == 0) {
            layer.msg('支付成功!');
        } else {
            layer.msg(result.msg);
        }
    }
});





评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

码码再也不用担心我的学习

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值