使用代码 发送http post请求,如果要携带参数的话,
1.设置 post正文的 格式 content-type
2.按照 content-type 对应的格式进行编码, 传给 httpBody
3.发送出去。即可
猜想:服务端 get 参数 会根据 content-type 内部进行解码。(包含在getParam操作中了)
使用代码 发送http post请求,如果要携带参数的话,
1.设置 post正文的 格式 content-type
2.按照 content-type 对应的格式进行编码, 传给 httpBody
3.发送出去。即可
猜想:服务端 get 参数 会根据 content-type 内部进行解码。(包含在getParam操作中了)