原生AJAX post请求访问后端JSON数据接口

原生AJAX post请求访问后端JSON数据接口,第1张

function testAvatar() {
    var data = {
        "username": "123123",
        "password": "123"
    }

    var xmlHttp = new XMLHttpRequest();
    xmlHttp.onreadystatechange = function() {
        if (this.readyState == 4 && this.status == 200) {
            console.log(this.responseText);
            var i = JSON.parse(this.responseText);
        }
    }
    xmlHttp.open('POST', 'http://localhost:8080/account/login', true);
    xmlHttp.setRequestHeader('Content-Type', 'application/json')
    xmlHttp.send(JSON.stringify(data))
}

如果没该Request请求头则会报415错误

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/944477.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-18
下一篇 2022-05-18

发表评论

登录后才能评论

评论列表(0条)

保存