Use FormData to upload files and images,

Source: Internet
Author: User

Use FormData to upload files and images,

About FormData

  • XMLHttpRequest Level 2 adds a new interface ---- FormData
  • The FormData object can be used to simulate a series of form controls using some key-value pairs in js. The send () method of XMLHttpRequest can be used to submit forms asynchronously.
  • Compared with normal ajax, FormData can be used to upload binary files asynchronously.

FormData object

    • FormData object, which can combine the name and value of all form elements into a queryString and submit it to the background. When ajax is used for submission, using the FormData object can reduce the amount of work required to splice queryString.
    • QueryString is the query string, and the http query string is in the url? Specify the value following
    • When the form on the page sends request data to the page in the GET mode (if the data contains insecure characters, the browser first converts the data to hexadecimal characters before transmission, if a space is converted to % 20), the web server puts the request data in an environment variable named QUERY_STRING. The Request. QueryString method extracts the corresponding value from this environment variable and restores the value to a hexadecimal character.

Use FormData to upload files and Images

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.