The difference between html form submission action and url jump to actiond

The difference between html form submission action and url jump to actiond
The action of the form is different from the URL jump:

The form can pass data to the background, and the background can directly use the request object to request data from the front end.
There are two ways to pass data through a form:
method="post": This is used to transfer large amounts of data. The data will be packaged before being transferred, so this method of transferring data will be less efficient, but the data that passes through can be parsed correctly, so there will be no garbled characters when transferring Chinese.
method="get": transmitted via URL. Due to the limited length of the address bar, the amount of data is limited, and the transmitted data must be within the ASCII code value range. Therefore, garbled characters will appear when Chinese is transmitted, and special processing is required.

The url jumps to the action only through the url parameters to pass data, action? parameter name = parameter value & ..., in the background, you can also use the request object to request the url parameter value from the front end (the url passing Chinese parameters needs special processing)

<<:  HTTP Status Codes

>>:  The problem of jquery.form.js denying access in IE and the input upload button must be actively clicked

Recommend

Vue+Openlayer realizes the dragging and rotation deformation effect of graphics

Table of contents Preface Related Materials Achie...

Introduction to Enterprise Production MySQL Optimization

Compared with other large databases such as Oracl...

MySQL case when usage example analysis

First we create the database table: CREATE TABLE ...

How to automatically import Vue components on demand

Table of contents Global Registration Partial Reg...

Tutorial on installing MySQL under Linux

Table of contents 1. Delete the old version 2. Ch...

Use of MySQL triggers

Triggers can cause other SQL code to run before o...

Use of Linux relative and absolute paths

01. Overview Absolute paths and relative paths ar...

Detailed explanation of the adaptive adaptation problem of Vue mobile terminal

1. Create a project with vue ui 2. Select basic c...

Detailed explanation of Vue's hash jump principle

Table of contents The difference between hash and...

Refs and Ref Details in Vue3

The editor also shares with you the corresponding...

Html/Css (the first must-read guide for beginners)

1. Understanding the meaning of web standards-Why...

The pitfall of MySQL numeric type auto-increment

When designing table structures, numeric types ar...

vue3 custom directive details

Table of contents 1. Registering custom instructi...

Some improvements in MySQL 8.0.24 Release Note

Table of contents 1. Connection Management 2. Imp...