How to implement a simple GET request in Nodejs

青灯夜游
Release: 2021-06-25 10:03:07
forward
3382 people have browsed it

This article will introduce to youNode.jsHow to implement a simple GET request. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to everyone.

How to implement a simple GET request in Nodejs

[Recommended study: "nodejs Tutorial"]

The identification of GET requests is very simple, it is the URL. To identify, use url.parse(req.url,true).query

Let’s take a look at the directory first

How to implement a simple GET request in Nodejs

##public The index.html file under
      Document 
姓名:
年龄:
性别:
Copy after login

package.json file

installs these two dependencies (execute these two commands first)

npm install finalhandler --save

npm install serve-static --save

Then automatically generate the following package.json file

{ "dependencies": { "finalhandler": "^1.1.1", "serve-static": "^1.13.2" } }
Copy after login

The most important get.js
//这个案例展示get请求参数如何获得 var finalhandler = require('finalhandler') var serveStatic = require('serve-static')//之前安装的两个依赖 var http = require('http') var url = require('url') var fs = require('fs')//node内置模块 // Serve up public/ftp folder //配置静态资源服务器,将public文件夹静态化出来 var serve = serveStatic('public', {'index': ['index.html', 'index.htm']}) // Create server var server = http.createServer(function onRequest (req, res) { //路由 var pathname = url.parse(req.url).pathname; if(pathname == '/addStudent'){ //拿到GET请求参数,就是拿到地址栏中的东西。 var queryJSON = url.parse(req.url,true).query; var data = `姓名:${queryJSON.name}\r\n年龄:${queryJSON.age}\r\n性别:${queryJSON.sex}\r\n`; fs.writeFile(`./student_data/${queryJSON.name}.txt`,data,(err) => {//判断如果是addStudent这个接口,会获得数据后自动生成一个txt文件 //console.log(err); //返回状态码 if(err){ res.end('cuowu'); }else{ res.end('ok'); } }) return; } serve(req, res, finalhandler(req, res)) }) // Listen server.listen(3000)
Copy after login

The last step is to open your terminal, find the directory where get.js is located and then
node get.js
Copy after login
This small project will It will run on your 3000 port

How to implement a simple GET request in Nodejs

The data is stored in this folder

How to implement a simple GET request in Nodejs

For more programming-related knowledge, please visit:

programming video! !

The above is the detailed content of How to implement a simple GET request in Nodejs. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:csdn.net
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!