Opened 13 years ago
Closed 12 years ago
#6549 closed enhancement (worksforme)
AJAX calls should set the "Accept" header if appropriate
Reported by: | MikeBaranczak | Owned by: | |
---|---|---|---|
Priority: | undecided | Milestone: | |
Component: | ajax | Version: | 1.4.2 |
Keywords: | ajax header json | Cc: | |
Blocked by: | Blocking: |
Description
Some web service libraries (like Jersey) allow you to send back data in different formats (like XML, JSON or www-form-encoded) from the same URL. The client can select the format by setting the "Accept" request header. This unfortunately can't be done through JQuery.
I propose the following enhancements:
- Allow the "Accept" header to be set when calling $.ajax();
- Make $.getJSON() (and possibly other high-level AJAX calls) set this header to the appropriate value by default.
(See the comment by Wolfram Arnold on this page: http://api.jquery.com/jQuery.getJSON/ )
Change History (5)
comment:1 Changed 13 years ago by
comment:2 Changed 13 years ago by
OK, it looks like this is actually a bug that only appears in some situations. It happens when the URL contains a parameter: 'callback=?' - I haven't seen it happen otherwise. Someone who knows more about JSONP than me should probably review this.
comment:5 Changed 12 years ago by
Priority: | → undecided |
---|---|
Resolution: | → worksforme |
Status: | new → closed |
Setting dataType
sets the Accept header.
Sorry, please disregard this ticket. It turns out that JQuery already does set the "Accept" header.