XMLHttpRequest仅发送130 kB最大大小的文件

时间:2013-04-22 07:02:31

标签: javascript post xmlhttprequest

我使用XMLHttpRequest发送文件,它的工作情况为“OK”,文件大小小于130 kB。

我的代码是

var xhr = new XMLHttpRequest();

    xhr.upload.onprogress = function(e){
        if (e.lengthComputable){
            self._loaded[id] = e.loaded;
            self._options.onProgress(id, name, e.loaded, e.total);
        }
    };

    xhr.onreadystatechange = function(){            
        if (xhr.readyState == 4){
            self._onComplete(id, xhr);                    
        }
    };

    // build query string
    params = params || {};
    params['qqfile'] = name;
    var queryString = qq.obj2url(params, this._options.action);

    xhr.open("POST", queryString, true);
    xhr.setRequestHeader("X-Requested-With", "XMLHttpRequest");
    xhr.setRequestHeader("X-File-Name", encodeURIComponent(name));
    xhr.setRequestHeader("Content-Type", "application/octet-stream");
    xhr.send(file);

有人能帮助我吗?

1 个答案:

答案 0 :(得分:0)

已禁用mod_security(PHP服务器)时问题已解决。