Skip to content
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

response header does not include all the properties #335

Open
7 tasks
jliu1970 opened this issue Mar 4, 2019 · 0 comments
Open
7 tasks

response header does not include all the properties #335

jliu1970 opened this issue Mar 4, 2019 · 0 comments

Comments

@jliu1970
Copy link

jliu1970 commented Mar 4, 2019

Description

Send a post request through Iron-ajax. at the function to handle response, I have the code
onResponse: function (e, request) {
var headers = request.xhr.getAllResponseHeaders();
alert(headers)
}

Expected outcome

I was expecting to see a json object below (as I see when I post the same request through swagger-ui provided by the server):
{
"date": "Mon, 04 Mar 2019 21:09:12 GMT",
"validationerror": "Validation Failed for Agency Group",
"transfer-encoding": "chunked",
"access-control-allow-methods": "POST, GET, OPTIONS, PUT, DELETE",
"content-type": "application/json;charset=UTF-8",
"access-control-allow-origin": "https://************",
"access-control-max-age": "3600",
"access-control-allow-credentials": "true",
"access-control-allow-headers": "Content-Type, Accept, Access-Control-Allow-Headers, Authorization, X-Requested-With",
"server": "nginx/1.15.6",
"request-context": "appId=
"
}

Actual outcome

I only saw:
"content-type": "application/json;charset=UTF-8",

Live Demo

Steps to reproduce

Browsers Affected

  • [x ] Chrome
  • Firefox
  • Safari 9
  • Safari 8
  • Safari 7
  • Edge
  • IE 11
  • IE 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant