使用Ajax XmlHttpRequest上传文件

时间:2011-06-02 06:19:23

标签: javascript ajax jquery file-upload xmlhttprequest

您好我正在尝试使用此代码发送带有xmlhttprequest的文件。

<script>
    var url= "http://localhost:80/....";
    $(document).ready(function(){
        document.getElementById('upload').addEventListener('change', function(e) {
            var file = this.files[0];
            var xhr = new XMLHttpRequest();
            xhr.file = file; // not necessary if you create scopes like this
            xhr.addEventListener('progress', function(e) {
                var done = e.position || e.loaded, total = e.totalSize || e.total;
                console.log('xhr progress: ' + (Math.floor(done/total*1000)/10) + '%');
            }, false);
            if ( xhr.upload ) {
                xhr.upload.onprogress = function(e) {
                    var done = e.position || e.loaded, total = e.totalSize || e.total;
                    console.log('xhr.upload progress: ' + done + ' / ' + total + ' = ' + (Math.floor(done/total*1000)/10) + '%');
                };
            }
            xhr.onreadystatechange = function(e) {
                if ( 4 == this.readyState ) {
                    console.log(['xhr upload complete', e]);
                }
            };
            xhr.open('post', url, true);
            xhr.setRequestHeader("Content-Type","multipart/form-data");
            xhr.send(file);
        }, false);
    });
</script>

但是我收到了这个错误:请求被拒绝,因为没有找到多部分边界 帮帮我..

1 个答案:

答案 0 :(得分:90)

  1. 没有xhr.file = file;这样的东西;文件对象不应该以这种方式附加。
  2. xhr.send(file)不发送文件。您必须使用FormData对象将文件包装到multipart/form-data发布数据对象中:

    var formData = new FormData();
    formData.append("thefile", file);
    xhr.send(formData);
    
  3. 之后,可以在$_FILES['thefile']中访问该文件(如果您使用的是PHP)。

    请记住,MDCMozilla Hack demos是您最好的朋友。

    编辑:上述(2)不正确。它确实发送文件,但它会将其作为原始发布数据发送。这意味着您必须自己在服务器上解析它(而且通常不可能,取决于服务器配置)。阅读如何使用PHP here获取原始发布数据。