We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dear all:
when i create ajax to get a image, i can't get onProgress when downloading, i need some help,Thx!!
Observable.ajax({url, crossDomain: true, ...options})
RxJS version: 5.3.0
Code to reproduce:
let ps = new Subscriber((e)=>console.log(e));
Observable.ajax({'imgUrl', crossDomain: true, progressSubscriber:ps,timeout:5000,}).subscribe()
Expected behavior:
i hope get onProgress eventData on downloading;
Actual behavior:
progressSubscriber not work;
Additional information:
i saw the code ,maybe root.XDomainRequest interrupt the xhr.onprogress ;
if (root.XDomainRequest) { xhr.onprogress = xhrProgress; }
The text was updated successfully, but these errors were encountered:
see #2428
Sorry, something went wrong.
Seems to be a duplicate of #2448
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
No branches or pull requests
Dear all:
when i create ajax to get a image, i can't get onProgress when downloading,
i need some help,Thx!!
Observable.ajax({url, crossDomain: true, ...options})
RxJS version: 5.3.0
Code to reproduce:
let ps = new Subscriber((e)=>console.log(e));
Observable.ajax({'imgUrl', crossDomain: true, progressSubscriber:ps,timeout:5000,}).subscribe()
Expected behavior:
i hope get onProgress eventData on downloading;
Actual behavior:
progressSubscriber not work;
Additional information:
i saw the code ,maybe root.XDomainRequest interrupt the xhr.onprogress ;
if (root.XDomainRequest) {
xhr.onprogress = xhrProgress;
}
The text was updated successfully, but these errors were encountered: