Open In App

Post/Redirect/Get (PRG) Design Pattern

Prerequisite- HTTP Protocol, GET and POST requests using Python

Introduction:



PRG is one of many design patterns used in web development. It is used to prevent the resubmission of a form caused by reloading the same web page after submitting the form. It removes redundancy of content to strengthen the SEO and makes the website user friendly.    It is used by large, trusted online shops and other robust websites which are intended to be user friendly.

Problem:



When we try to submit a web form then a HTTP POST request is sent to the server. The server process the request and send response to the client with response code 2XX. When the client try to refresh/reload the web page, he/she unintentionally sends another HTTP POST request to the server with the same data as just before. This may cause undesired results, such as duplicate web purchases.

The browser pops up a warning message box after reload as shown below:

Internal working:

Below is the block diagram of internal working of the above problem.

Solution:

To avoid this problem many web developer use the POST/REDIRECT/GET pattern, instead of returning a web page directly, the POST returns a redirect to another web page or same depending on the requirements.

Internal working:

Below is the block diagram of internal working of the above solution.

A minimal python and HTML code using flask framework to demonstrate above concept.

Console output:

In the below image, the first GET request is made when we use localhost:5000, then we POST data to the server. Now, after processing the data server redirects us by making a GET request so the third GET request is made by the server and finally the fourth GET request is made when we try to refresh the page.

Note: Try to play with code without redirecting.


Article Tags :