如何使用浏览器发post请求

码农小C 2024-09-30 15:35:02 阅读 60

如何使用浏览器发送post请求

第一种:无请求体第二种:要设置请求体的post请求

通过浏览器发送post请求有两种简单的方式,只需要根据实际情况在console执行以下代码即可。

第一种:无请求体

没有请求体,可以直接使用以下方式,url需要换成你自己的地址,简单方便。

<code>fetch(new Request('http://test.com',{ -- -->method:'POST'})).then((resp)=>{ console.log(resp)})

在这里插入图片描述

在这里插入图片描述

第二种:要设置请求体的post请求

但是需要设置请求体时,且需要设置请求头可以使用以下方法,url和param的内容换成你自己的参数即可。

<code>var url = "http://localhost:82/marriage-admin/marriage/act/exportEvaluationUser";

var params = { -- -->

"page": 1,

"pageSize": 10,

"bsnType": "marriage",

"serverType": "",

"bsnIds": ["3685056891847020"]

};

var xhr = new XMLHttpRequest();

xhr.open("POST", url, true);

xhr.setRequestHeader("Content-Type", "application/json");

xhr.onload = function (e) {

if (xhr.readyState === 4) {

if (xhr.status === 200) {

console.log(xhr.responseText);

} else {

console.error(xhr.statusText);

}

}

};

xhr.onerror = function (e) {

console.error(xhr.statusText);

};

xhr.send(JSON.stringify(params));

在这里插入图片描述

可变参数:

<code>public class VarArgsTest1

{ -- -->

private static void test(String s, String...ss)

{

for(int i = 0; i < ss.length; i++)

{

System.out.println(ss[i]);

}

}

public static void main(String[] args)

{

test(null);

test("");

test("aaa");

test("aaa", "bbb");

}

}



声明

本文内容仅代表作者观点,或转载于其他网站,本站不以此文作为商业用途
如有涉及侵权,请联系本站进行删除
转载本站原创文章,请注明来源及作者。