PrefaceNodejs is a server-side language. During development, registration and login, etc. need to send data to the backend through a form for judgment. So, as a server-side language, what methods can nodejs use to receive the post request value of the call form? The following three are commonly used. Let's look at their specific usage with examples. We use the express plug-in in the backend, so you need to know something about express to read it easily~ 1. First, initialize npm, download the express package, import the module and create a service object //Import the express module const express = require("express"); // Create a server object const app = express(); form form deliveryThis feature of the from form allows you to click a button in the form whose type is submit, which will submit the form data. The form is in an object format. The attribute name is the name value in the input tag, and the attribute value is the value of the input tag. The following example shows the specific writing method. <form action="/todata" method="POST"> <table> <tr> <td>Name</td> <td> <input type="text" name="user" id=""></td> </tr> <tr> <td>Password</td> <td> <input type="text" name="password" id=""></td> </tr> <tr> <button type="submit">Submit</button> </tr> </table> </form> Since form submission is a post request, the backend nodejs code needs to parse the response header of the post request data and then use app.use(bodyParser.urlencoded({ extended: false })) to represent the data passed from the front end. The specific backend code is as follows. const express = require("express"); const app = express(); app.use(express.static("./")) var bodyParser = require('body-parser') // Parse application/x-www-form-urlencoded response header app.use(bodyParser.urlencoded({ extended: false })) app.post("/todata",(req,res)=>{ console.log(req.body); res.send("Submission successful") }) app.listen("80",()=>{ console.log("success"); }) Run the node code through the terminal to see the results ajax request passingWhen sending requests to the backend, get and post requests are often used. Similarly, form data can be sent to the backend via ajax post requests. Based on the above example, the front-end code of this method is as follows. $("#inp3").on("click",function(){ let user = $("#inp1").val(); let password = $("#inp2").val(); $.ajax({ url:"todata", type:"post", data:{ user, password }, success:(data)=>{ alert(data) } }) }) Here, we get the values of the two inputs, and then bind the submit button to send an ajax request. The data sent to the backend is stored in the data attribute. The backend also obtains it through req.body. It is important to note that the form does not need to write an action value, and the button in the form needs to prevent the default behavior (otherwise the request will be sent directly when clicked, causing the ajax request to fail), or use the input tag type as button type. Form SerializationThis method of sending is a common method of form submission. It also sends the request through ajax, and the name attribute can also be sent directly as the attribute name of the backend. It can be said to be a combination of the above two methods. $("#inp3").on("click",function(){ $.ajax({ url:"todata", type:"post", data:$("form").serialize(), success:(data)=>{ alert(data) } }) }) You only need to use the $("form").serialize() method to get the value of the name attribute. SummarizeThis is the end of this article about how to get form data with nodejs. For more information about how to get form data with nodejs, please search previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Mysql dynamically updates the database script example explanation
>>: Detailed tutorial on how to automatically install CentOS7.6 using PXE
CentOS 8 is officially released! CentOS fully com...
Install the unzipped version of MySql database un...
<br />When discussing with my friends, I men...
Table of contents background 1) Enable the keepch...
Requirement: Celery is introduced in Django. When...
Note: This demo is tested in the mini program env...
Preface The company's Ubuntu server places th...
Resume Code: XML/HTML CodeCopy content to clipboa...
I'm playing with big data recently. A friend ...
This article example shares the specific code of ...
This article shares the specific code of Javascri...
This article shares the specific code for JavaScr...
Download the installation package from the offici...
Below is the code that Shiji Tiancheng uses to ca...
Docker is a management tool that uses processes a...