xhr.upload.onprogress doesn't work

匿名 (未验证) 提交于 2019-12-03 08:46:08

问题:

Everything in the following code will work, except it will never fire the xhr.upload.onprogress event.

$(function(){      var xhr;      $("#submit").click(function(){         var formData = new FormData();         formData.append("myFile", document.getElementById("myFileField").files[0]);         xhr = new XMLHttpRequest();         xhr.open("POST", "./test.php", true);         xhr.send(formData);          xhr.onreadystatechange = function(){             if(xhr.readyState === 4 && xhr.status === 200){                 console.log(xhr.responseText);                           }         }          xhr.upload.onprogress = function(e) {            // it will never come inside here         }     }); });  

回答1:

You should create the listeners before opening the connection, like this:

$(function(){      var xhr;      $("#submit").click(function(){         var formData = new FormData();         formData.append("myFile", document.getElementById("myFileField").files[0]);         xhr = new XMLHttpRequest();          xhr.onreadystatechange = function(){             if(xhr.readyState === 4 && xhr.status === 200){                 console.log(xhr.responseText);                           }         }          xhr.upload.onprogress = function(e) {            // it will never come inside here         }          xhr.open("POST", "./test.php", true);         xhr.send(formData);     }); }); 

Hope that helps.



标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!