🎪 请求类型
ForestRequest 对象提供了设置/获取请求类型的方法
// 设置请求类型为 GET, 参数为 ForestRequestType 枚举类型
request.setType(ForestRequestType.GET);
// 获取当前的请求类型,返回 ForestRequestType 枚举
request.getType();
1
2
3
4
2
3
4
从第二次开始后修改请求类型,就会记录上一次的请求类型的变更历史
// 创建新的 Forest 请求对象
ForestRequest<?> request = Forest.request("/");
// 第一次设置为 GET 请求
request.setType(ForestRequestType.GET);
// 第二次设置为 POST 请求
request.setType(ForestRequestType.POST);
1
2
3
4
5
6
2
3
4
5
6
在发送请求时会在日志中打印出请求类型的变更历史
[Forest] Request :
[Type Change]: GET -> POST
POST http://localhost/ HTTP
1
2
3
2
3
帮助我们改善此文档 (opens new window)
上次更新: 2023/06/19, 17:37:19