1.

Which Request Is Better, Get Or Post?

Answer»

AJAX requests should USE an HTTP GET request where the data does not CHANGE for a given URL requested.
An HTTP POST should be used when state is UPDATED on the server. This is highly recommended for a consistent web application architecture.

AJAX requests should use an HTTP GET request where the data does not change for a given URL requested.
An HTTP POST should be used when state is updated on the server. This is highly recommended for a consistent web application architecture.



Discussion

No Comment Found