Home >Backend Development >PHP Tutorial >Can formData append be passed in? How does PHP get the value added by append?

Can formData append be passed in? How does PHP get the value added by append?

WBOY
WBOYOriginal
2016-09-14 09:41:201811browse

You can also continue to add new key-value pairs based on the existing form data, as follows:

<code>var formElement = document.getElementById("myFormElement");
formData = new FormData(formElement);
formData.append("number", 123);
oReq.send(formData);

那么php怎么获取到number123</code>

Reply content:

You can also continue to add new key-value pairs based on the existing form data, as follows:

<code>var formElement = document.getElementById("myFormElement");
formData = new FormData(formElement);
formData.append("number", 123);
oReq.send(formData);

那么php怎么获取到number123</code>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn