当前位置:首页 » 《关注互联网》 » 正文

如何使用浏览器发post请求

11 人参与  2024年09月09日 19:22  分类 : 《关注互联网》  评论

点击全文阅读


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

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

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

第一种:无请求体

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

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

在这里插入图片描述
在这里插入图片描述

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

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

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));

在这里插入图片描述
可变参数:

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");    }}

点击全文阅读


本文链接:http://zhangshiyu.com/post/157528.html

<< 上一篇 下一篇 >>

  • 评论(0)
  • 赞助本站

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

关于我们 | 我要投稿 | 免责申明

Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1