首页
技术
登录
6mi
u
盘
搜
搜 索
技术
HttpClient的POST请求设置参数,服务器接收参数为空的问题
HttpClient的POST请求设置参数,服务器接收参数为空的问题
技术
2022-07-17
61
原因:Content-Type 没设置对
修改:
postMethod.addRequestHeader
(
"Content-Type"
,
"application/json"
)
;
改成 postMethod.addRequestHeader
(
"Content-Type"
,
"application/x-www-form-urlencoded"
)
;
参考:https://blog.csdn.net/NRlovestudy/article/details/96986490
转载请注明原文地址:https://ipadbbs.8miu.com/read-28634.html
最新回复
(
0
)