欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

fetch

程序员文章站 2022-04-25 19:30:22
...

fetch是类似AJAX的交互方式之一

 

        //GET
        fetch(`http://localhost:80?user=${user}&pass=${pass}`, {
            method: "GET"
        }).then((res) => {
            res.json(() => {
                
            }).then((res) => {
                //成功代码
            }).catch(() => {
                //失败代码
            })
        }); 
        
        //POST
        fetch(`http://localhost:80`, {
            method: "POST",
            headers:{
                "Content-Type" : "application/x-www-form-urlencoded"
            },
            body:`user=${user}&pass=${pass}`
        }).then((res) => {
            res.json(() => {
                
            }).then((res) => {
                //成功代码
            }).catch(() => {
                //失败代码
            })
        });