发送from-data格式的请求
apt.sendRequest({
url:“http://127.0.0.1:8888/login”,
method:“POST”,
headers:{
“cookie”:“a=1;b=2”,
“content-type”:“multipart/form-data”
},
timeout:“25000”,
formData:{“name”:“xiaoming”,“pwd”:123}
}, function (response) {
console.log(response);
});

发送application/x-www-form-urlencoded格式的请求
apt.sendRequest({
url:“http://127.0.0.1:8888/login”,
method:“POST”,
headers:{
“cookie”:“a=1;b=2”,
“content-type”:“application/x-www-form-urlencoded”
},
timeout:“25000”,
form:“a=1”
}, function (response) {
console.log(response);
});

发送application/json格式的请求
apt.sendRequest({
url:“http://127.0.0.1:8888/login”,
method:“POST”,
headers:{
“cookie”:“a=1;b=2”,
“content-type”:“application/json”
},
timeout:“25000”,
body:"{a:1}"
}, function (response) {
console.log(response);
});

本文通过示例展示了如何使用apt.sendRequest方法发送from-data、application/x-www-form-urlencoded及application/json三种不同格式的POST请求。每种请求都详细配置了URL、方法、头部信息、超时时间和请求体。

4667

被折叠的 条评论
为什么被折叠?



