Commit 471a32e1 authored by honghy's avatar honghy

添加注释

parent 19fa6975
......@@ -20,13 +20,13 @@ public class HttpUtils {
private static final HttpClient HTTP_CLIENT = HttpClientFactory.get(Request.Util.OkHttp);
/**
* 执行POST请求
* 发送POST请求并返回响应结果
*
* @param url 请求的URL
* @param params 请求参数,键值对形式
* @param headers 请求头,键值对形式
* @return 返回响应对象,包含响应码、响应内容等信息
* @throws RuntimeException 如果执行请求时发生异常,则抛出运行时异常
* @param url 请求的URL地址
* @param params 请求参数,键值对形式
* @param headers 请求头,键值对形式
* @param paramFormat 请求参数的格式
* @return Response对象,包含响应结果
*/
public static Response post(String url, Map<String, Object> params, Map<String, String> headers, Request.ParamFormat paramFormat) {
// 创建请求对象,指定URL、请求方法和参数
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment