InterviewSolution
Saved Bookmarks
| 1. |
Should one use the HTTP GET request or the POST request for any AJAX call? |
|
Answer» While retrieving data, the AJAX request MUST USE the HTTP GET request. It is because the data won't alter for a presented request URL. One should use the HTTP POST when the STATE requires an update on the server. |
|