Duplicate form submission is the most common and troublesome problem in multi-user web applications. There are many application scenarios that may encounter duplicate submission problems, such as: Click the Submit button twice. Click the Refresh button. Using the browser back button to repeat previous actions results in duplicate form submissions. Use your browser history to submit the form repeatedly. The browser repeats the HTTP request. Several ways to prevent duplicate form submission 1. Disable the submit button . Use Javascript to disable the submit button after the form is submitted. This approach prevents impatient users from clicking the button multiple times. But there is a problem. If the client disables Javascript, this method will be invalid. I mentioned in my previous article that using some Jquery plug-ins can have good effects. 2.Post/Redirect/Get mode . Performing a page redirect after submission is called the Post-Redirect-Get (PRG) pattern. In short, when the user submits the form, you perform a client-side redirect to the submission success information page. This can avoid repeated submission caused by users pressing F5, and there will be no warning about repeated submission of the browser form. It can also eliminate the same problem caused by pressing the forward and back buttons of the browser. 3. Store a special flag in the session . When the form page is requested, a special string of characters is generated, stored in the session, and placed in a hidden field of the form. When accepting and processing form data, check whether the identification string exists, immediately delete it from the session, and then process the data normally. If it is found that there is no valid flag string in the form submission, it means that the form has been submitted and the submission is ignored. This gives your web application a more advanced level of XSRF protection. 4. Add constraints in the database. Add a unique constraint or create a unique index in the database to prevent duplicate data. This is the most effective way to prevent duplicate submission of data. The above is an introduction to these four methods. If you have better solutions, please let me know. This article will continue to be updated. |
<<: Let IE6, IE7, IE8 support CSS3 rounded corners and shadow styles
>>: Detailed explanation of CSS child element fixed positioning solution relative to parent element
Since Alibaba Cloud's import of custom Ubuntu...
Table of contents Undo Log Undo Log Generation an...
There are some tags in XHTML that have similar fu...
This article shares the specific code of JavaScri...
1. Enter the container docker run [option] image ...
Table of contents Global Registration Partial Reg...
Table of contents 1. Installation 2.APi 3. react-...
Translucent border Result: Implementation code: &...
Preface Still referring to the project mentioned ...
Today I was asked what the zoom attribute in CSS ...
Table of contents 1. Basic principles 2. Specific...
This article shares the specific code of JS to im...
Table of contents background: need: Effect 1. Ide...
Table of contents 1. Follow the wizard to create ...
JavaScript writes a random roll call webpage for ...