Opened 13 years ago
Closed 12 years ago
#6674 closed bug (fixed)
GET request sends Content-Type header when data on URI
Reported by: | harbulot | Owned by: | |
---|---|---|---|
Priority: | undecided | Milestone: | 1.4.3 |
Component: | ajax | Version: | 1.4.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Hello,
The fix for ticket #4183 (between 1.3.2 and 1.4) implies that GET and HEAD ajax requests send a 'Content-Type' header when they should not, since these methods do not have a message-body. Some servers refuse GET requests with a Content-Type header.
The problem is around line 352 in src/ajax.js
:
if ( s.data || origSettings && origSettings.contentType ) { xhr.setRequestHeader("Content-Type", s.contentType); }
A fix could be:
if ( (s.data && type !== "GET" && type != "HEAD") || origSettings && origSettings.contentType ) { xhr.setRequestHeader("Content-Type", s.contentType); }
Best wishes,
Bruno.
Change History (3)
comment:1 Changed 13 years ago by
comment:3 Changed 12 years ago by
Priority: | → undecided |
---|---|
Resolution: | → fixed |
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
I forgot to say that, if I specify
"contentType": null
explicitly as a parameter to$.ajax
, Firefox does not send theContent-Type
header, but Opera does (Content-Type: null
, so the problem remains.