Should we put all the selected data in the URL and submit it in GET method, or submit it in POST method?
Should we put all the selected data in the URL and submit it in GET method, or submit it in POST method?
Personally, I prefer to use GET, which is semantically suitable. Because GET is only a query and will not modify the data, and you are just transferring the data to other pages without any data modification. Submit the order on your order page and then use POST
Post submission is fine.
Of course, there is no problem with get submission.
post is safer.
Usually there is a hidden form, the value of this form is constantly modified with click operations, and then the data is submitted through the form
post is relatively safer