


Detailed example of using JSON format to submit forms in HTML5_html5 tutorial skills
Submitting form data in JSON encoding format is another major contribution of HTML5 to the development and evolution of WEB. In the past, our HTML form data was transmitted on the server side through key-value method. This form of transmission lacked management of data organization. The form is very primitive. The newly emerged method of submitting form data in JSON format converts all data in the form into a JSON format with certain specifications, and then transmits it to the server. The data received by the server is qualified JSON code that can be used directly. How to declare form submission in JSON format
Everyone should be familiar with how to use a form to upload a file. It requires adding the enctype="multipart/form-data" statement to the form tag in HTML, which tells the browser to send the form data in file upload mode. The declaration of the JSON format submission form is similar to this. It is written as: enctype='application/json'.
Compatibility with older browsers
Submitting forms in JSON format is a very new specification in HTML5. Only modern browsers that implement these specifications can recognize the semantics of enctype='application/json' and correctly package form data into JSON format. For some old browsers, as well as browsers that have not yet implemented these standards, they cannot recognize what enctype='application/json' represents, so the form's enctype will automatically degrade to the application/x-www-form-urlencoded default encoding. Format. Server-side code can determine how to receive data based on the value of enctype.
Format example of JSON encoding format submission form
Example 1 Basic usage
- form enctype='application/json'>
- input name='name' value='Bender'>
- select name='hind' >
- option selected>Bitable< ;/option>
- option>Kickableoption>
- select>
- input type='checkbox' name='shiny' checked>
- form>
- //The generated Json data is
- {
- "name": "Bender"
- , "hind": "Bitable"
- , "shiny": true
- }
Example 2 When there are multiple form fields with the same name in the form, encode them as JSON arrays
- form enctype='application/json'>
- input type='number' name='bottle-on-wall' value='1'>
- input type='number' name='bottle-on-wall' value='2'>
- input type='number' name='bottle-on-wall' value='3'>
- form>
- // 生成的Json数据是
- {
- "bottle-on-wall": [1, 2, 3]
- }
例3 表单域名称以数组形成出现的复杂结构
- form enctype='application/json'>
- input name='pet[species]' value='Dahut'>
- input name='pet[name]' value='Hypatia'>
- input name='kids[1]' value='Thelma'>
- input name='kids[0]' value='Ashley'>
- form>
- // 生成的Json数据是
- {
- "pet": {
- "species": "Dahut"
- , "name": "Hypatia"
- }
- , "kids": ["Ashley", "Thelma"]
- }
例4 在上面的例子中,缺失的数组序号值将以null替代
- form enctype='application/json'>
- input name='hearbeat[0]' value='thunk'>
- input name='hearbeat[2]' value='thunk'>
- form>
- // 生成的Json数据是
- {
- "hearbeat": ["thunk", null, "thunk"]
- }
例5 多重数组嵌套格式,嵌套层数无限制
- form enctype='application/json'>
- input name='pet[0][species]' value='Dahut'>
- input name='pet[0][name]' value='Hypatia'>
- input name='pet[1][species]' value='Felis Stultus'>
- input name='pet[1][name]' value='Billie'>
- form>
- // 生成的Json数据是
- {
- "pet": [
- {
- "species": "Dahut"
- , "name": "Hypatia"
- }
- , {
- "species": "Felis Stultus"
- , "name": "Billie"
- }
- ]
- }
例6 真的,没有数组维度限制!
- form enctype='application/json'>
- input name='wow[ such][deep][3][much][power][!]' value='Amaze' >
- form>
- // The generated Json data is
- {
- "wow": {
- "such": {
- "deep": [
- , null
- , null
- , , {
- “much”: {
- "power": {
- “!”: “Amaze”
- }
- Example 7 File upload
- XML/HTML Code
- Copy content to clipboard
- form enctype='application/json'>
- input type='file' name='file' multiple>
- form>
- // Suppose you upload 2 files, the generated Json data is:
- {
- "file": [
- "type": "text/plain",
- "name": "dahut.txt",
- "body": "
- REFBQUFBQUFIVVVVVVVVVVVVCEhIQo=" },
- "type": "text/plain",
- "name": "litany.txt",
- "Body": " SSBTDXN0IG5VDCBMZWFYLLLXVHCIBPCIBPCIB0AGUGBWLUZC1RWXSZIUCG
- ==" ]
- }

The tools and frameworks that need to be mastered in H5 development include Vue.js, React and Webpack. 1.Vue.js is suitable for building user interfaces and supports component development. 2.React optimizes page rendering through virtual DOM, suitable for complex applications. 3.Webpack is used for module packaging and optimize resource loading.

HTML5hassignificantlytransformedwebdevelopmentbyintroducingsemanticelements,enhancingmultimediasupport,andimprovingperformance.1)ItmadewebsitesmoreaccessibleandSEO-friendlywithsemanticelementslike,,and.2)HTML5introducednativeandtags,eliminatingthenee

H5 improves web page accessibility and SEO effects through semantic elements and ARIA attributes. 1. Use, etc. to organize the content structure and improve SEO. 2. ARIA attributes such as aria-label enhance accessibility, and assistive technology users can use web pages smoothly.

"h5" and "HTML5" are the same in most cases, but they may have different meanings in certain specific scenarios. 1. "HTML5" is a W3C-defined standard that contains new tags and APIs. 2. "h5" is usually the abbreviation of HTML5, but in mobile development, it may refer to a framework based on HTML5. Understanding these differences helps to use these terms accurately in your project.

H5, or HTML5, is the fifth version of HTML. It provides developers with a stronger tool set, making it easier to create complex web applications. The core functions of H5 include: 1) elements that allow drawing graphics and animations on web pages; 2) semantic tags such as, etc. to make the web page structure clear and conducive to SEO optimization; 3) new APIs such as GeolocationAPI support location-based services; 4) Cross-browser compatibility needs to be ensured through compatibility testing and Polyfill library.

How to create an H5 link? Determine the link target: Get the URL of the H5 page or application. Create HTML anchors: Use the <a> tag to create an anchor and specify the link target URL. Set link properties (optional): Set target, title, and onclick properties as needed. Add to webpage: Add HTML anchor code to the webpage where you want the link to appear.

Solutions to H5 compatibility issues include: using responsive design that allows web pages to adjust layouts according to screen size. Use cross-browser testing tools to test compatibility before release. Use Polyfill to provide support for new APIs for older browsers. Follow web standards and use effective code and best practices. Use CSS preprocessors to simplify CSS code and improve readability. Optimize images, reduce web page size and speed up loading. Enable HTTPS to ensure the security of the website.

h5 pages can generate links in two ways: create links manually or use short link services. By manually creating, you just need to copy the URL of the h5 page; through the short link service, you need to paste the URL into the service and then get the shortened URL.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

SublimeText3 Chinese version
Chinese version, very easy to use

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.