-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
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
"Failed to load response data" in chrome #83
Comments
We always set |
Thats definitely what we want to do, but it sounds like |
@nhagen can you post more to reproduce this example. |
I'm able to isolate this just using marty, but it is resolvable as described above. Following the getting started guide here: http://martyjs.org/guides/getting-started/
Inspecting the api call to I'm creating an issue in martyjs in case its a problem with that library at this point. martyjs/marty#90 |
Also to note, there is a Chrome devtools bug about not showing blob type XHR's response in Network tab - |
I'm having the same exact problem. The chrome issue appears closed, yet the bug still remains. |
I think it is not released to stable yet. Chrome Canary works. |
Ah, thanks! Chrome Canary works. |
Closing out since this is not an issue with this library. |
I'm having the same exact problem! |
I am running an Angular 4 UI compile with webpack and I just upgraded to zone.js 0.8.4. Got the 'net ERR CONNECTION REFUSED error but only in Google Chrome browser. When I used IE I have no problems. The zone.js code and error.... start of code....
end of code............. I don't even know what the scheduled task would be or why zone.js is processing this XHR TASK for data. |
Stack Overflow is the best place to ask browser usage questions. |
I'm getting a "Failed to load response data" error in chrome. When I chrome inspect after
xhr.responseType = 'blob'
,xhr.responseText
immediately becomes the following:[Exception: DOMException: Failed to read the 'responseText' property from 'XMLHttpRequest': The value is only accessible if the object's 'responseType' is '' or 'text' (was 'blob').]
When I change it
xhr.responseType = ''
the problem goes away.Here are the http headers:
There is no problem in FF. I'm using fetch via the flux Martyjs library. Could this be a problem with my API endpoint? Can anyone provide any insight into this, or reproduce it?
Let me know what I can provide to be more constructive here.
The text was updated successfully, but these errors were encountered: