当前位置:网站首页>Content type ‘application/x-www-form-urlencoded;charset=UTF-8‘ not supported
Content type ‘application/x-www-form-urlencoded;charset=UTF-8‘ not supported
2022-07-03 09:28:00 【借一缕月光】
idea中,前端访问localhost:8001/payment/create?serial=333,报下列错误 。
Resolved [org.springframework.web.HttpMediaTypeNotSupportedException: Content type 'application/x-www-form-urlencoded;charset=UTF-8' not supported]
原因分析:postman中发送请求:localhost:8001/payment/create?serial=333,类型是x-www-form-urlencoded;charset=UTF-8 ,而我们在后端里使用了@RequestBody,只能接收前端传过来的json数据。
解决方案:
方案一:去掉@RequestBody注解,可以采用@RequestParam接收就行,前端和后台数据对应
方案二:在postman中就采用json格式
{
"serial":"12313",
"name":"韵升初"
}
边栏推荐
- [LZY learning notes dive into deep learning] 3.4 3.6 3.7 softmax principle and Implementation
- 二分查找法
- Leetcode-112:路径总和
- Discrete-event system
- A complete answer sheet recognition system
- Raspberry pie 4B installs yolov5 to achieve real-time target detection
- Policy gradient Method of Deep Reinforcement learning (Part One)
- Leetcode刷题---374
- Hands on deep learning pytorch version exercise solution - 2.5 automatic differentiation
- Policy Gradient Methods of Deep Reinforcement Learning (Part Two)
猜你喜欢
Leetcode - the k-th element in 703 data flow (design priority queue)
The imitation of jd.com e-commerce project is coming
C#项目-寝室管理系统(1)
LeetCode - 715. Range module (TreeSet)*****
七、MySQL之数据定义语言(二)
权重衰退(PyTorch)
Convolutional neural network (CNN) learning notes (own understanding + own code) - deep learning
侯捷——STL源码剖析 笔记
Secure in mysql8.0 under Windows_ file_ Priv is null solution
Timo background management system
随机推荐
CV learning notes - BP neural network training example (including detailed calculation process and formula derivation)
. DLL and Differences between lib files
20220531数学:快乐数
Jetson TX2 刷机
I really want to be a girl. The first step of programming is to wear women's clothes
Tensorflow - tensorflow Foundation
[LZY learning notes dive into deep learning] 3.5 image classification dataset fashion MNIST
Leetcode - 5 longest palindrome substring
20220602数学:Excel表列序号
Implementation of "quick start electronic" window dragging
[C question set] of Ⅵ
Several problems encountered in installing MySQL under MAC system
Opencv+dlib to change the face of Mona Lisa
20220603数学:Pow(x,n)
20220609 other: most elements
What useful materials have I learned from when installing QT
Numpy Foundation
20220604数学:x的平方根
ECMAScript -- "ES6 syntax specification # Day1
『快速入门electron』之实现窗口拖拽