What is the expected order of an array submitted in an HTML form?

前端 未结 4 1323
南笙
南笙 2020-12-20 13:41

I\'m wondering if there is any sort of guarantee on the order of POST variables I will see on the server side.

My use case is I have a form that a user will fill out

4条回答
  •  长情又很酷
    2020-12-20 13:52

    What is the expected order of an array submitted in an HTML form?

    According to the HTML specification:

    The control names/values are listed in the order they appear in the document

    http://www.w3.org/TR/html401/interact/forms.html#form-content-type

    However, it's better coding practice to employ an indexed array approach as shown in prodigitalson's answer.

提交回复
热议问题