Deprecate $.get and $.post
$.get and $.post are currently degenerated versions of $.ajax. The only thing that is useful about them is the conversion of data objects into string form. This could and should be handled by $.ajax, therefore there is hardly anymore use for $.get/$.post. "GET" is the default method for $.ajax anyway.
Change History (4)
Resolution: |
→ invalid
|
Status: |
new →
closed
|
Component: |
dimensions →
event
|
Priority: |
major →
blocker
|
Version: |
1.0b1 →
1.0
|
Resolution: |
invalid
|
Status: |
closed →
reopened
|
Resolution: |
→ invalid
|
Status: |
reopened →
closed
|
$.get and $.post are still useful for convenience: They provide a "typed" interfaces (no key/value object). But their inner logic can be completely moved to $.ajax: Both converting of data parameter and handling the response.