Closed iceprosurface closed 7 years ago
then I find [doc](https://xhr.spec.whatwg.org/#the-getallresponseheaders()-method) which shows that header will be lowercase in future.
this breaks our application which become unusable.
here is my temporary measures.
vue-resource/src/http/interceptor/json.js
type = response.headers.get('Content-Type') || '';
type = response.headers.get('Content-Type') || response.headers.get('content-type') || '';
it seem fixed in 1.3.0
Reproduction Link
then I find [doc](https://xhr.spec.whatwg.org/#the-getallresponseheaders()-method) which shows that header will be lowercase in future.
this breaks our application which become unusable.
Solution
here is my temporary measures.