2

我正在尝试将文件上传到远程服务器。我的请求没有正确到达那里,我在网络中看到状态为(已取消)。我没有看到我的数据在网络中传递。PFB 抽象代码

xhr = new XMLHttpRequest();

if (xhr) {
    xhr.open("POST", url);
    xhr.onreadystatechange = function() {
        if (xhr.readyState === 4) {
            ///do blah blah
        }
    };

}

var form = new FormData();
form.append("tpiFiles", fileData);

form.append("COOKIE", 'COOKIE=' + $.cookie('COOKIE'));
xhr.send(form);

非常感谢所有帮助。

谢谢

4

0 回答 0