首页 > 基础资料 博客日记

如何使用浏览器发post请求

2024-10-17 21:00:06基础资料围观91

这篇文章介绍了如何使用浏览器发post请求,分享给大家做个参考,收藏Java资料网收获更多编程知识

通过浏览器发送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");
    }
}


文章来源:https://blog.csdn.net/m0_50736744/article/details/138311444
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:jacktools123@163.com进行投诉反馈,一经查实,立即删除!

标签:

相关文章

本站推荐

标签云