2

我正在尝试通过 POST 使用 xmlhttprequest,但它给了我错误“Uncaught SyntaxError: Unexpected end of input”任何想法我做错了什么?

xhr = new XMLHttpRequest();
xhr.onreadystatechange = function() {
    if (xhr.readyState === 4 && xhr.status === 200) {
        console.log("saved data!");
    }
}

xhr.open("POST", "http://website.com/login.php", true);
xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xhr.send("user=ben&pass=abcxyz");
4

0 回答 0