nodejs前置学习

Node.js

概念

1. Nodejs概述

一些概念

  • 异步回调

适用场景(优缺点)

  • 不适合用于大型后端要求的项目,图像处理、视频转换等、文件压缩(用Ruby、PHP、python)

基础使用

0.模块导入

一般有两种导入办法,commonjs和ESMoudle方法

1.repl

2.file

node:fs 模块能够以标准 POSIX 函数为模型的方式与文件系统进行交互。

人话:读写文档用的

同步办法

同步(synchronous)代码也称为阻塞(blocking)代码,阻塞代码在执行完之前,后面的代码都不会执行

1
2
3
4
5
6
7
8
9
10
const fs = require("fs");

//同步读取文件
const textIn = fs.readFileSync("./txt/input.txt", "utf-8");
console.log(textIn); //输出文件内容

//同步写入文件,
const textOut = `这是一个关于python输入输出的概述${textIn}.\n写入时间是${Date.now()}`;
fs.writeFileSync("./txt/output.txt", textOut); //python中的open("文件路径","w")方法
console.log("文件写入成功");

异步办法

1
2
3
4
5
6
7
8
9
10
11
12
13
14
//异步读取文件,读取完毕执行回调函数,回调函数中的第一个参数是错误信息,第二个参数是读取的数据
fs.readFile("./txt/start.txt", "utf-8", (err, data) => {
if (err) return console.log("读取文件失败");
fs.readFile(`./txt/${data1}.txt`, "utf-8", (err, data2) => {
console.log(data2);
fs.readFile("./txt/append.txt", "utf-8", (err, data3) => {
console.log(data3);
fs.writeFile("./txt/final.txt", `${data2}\n${data3}`, "utf-8", err => {
console.log("文件写入成功");
});
});
});
console.log(data);
});

光看可能还是不容易理解,这里记住同步就是要把文件读完后才会执行下面代码,异步就是会边读文件边运行回调函数

3.Server

尝试第一个接口编写

1
2
3
4
5
6
7
8
9
10
11
12
const http = require("http");

const server = http.createServer((req, res) => {
console.log(req);
// console.log(res);
res.end("Hello World");
});

server.listen(8000, () => {
console.log("Server is running...");
});

4.Url

这时我们可以尝试使用Url了

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
const http = require("http");
const url = require("url");

const server = http.createServer((req, res) => {
const pathName = req.url; //获取请求的路径
if (pathName === "/" || pathName === "/overview") {
res.end("This is the OVERVIEW"); //返回响应
} else if (pathName === "/product") {
res.end("This is the PRODUCT");
} else {
res.writeHead(404, {
//设置响应头
"Content-type": "text/html", //设置响应类型
"my-own-header": "hello-world", //设置自定义响应头
});
res.end("<h1>Page not found!</h1>"); //返回响应
}
});

server.listen(8000, () => {
console.log("Server is running...");
});

__dirname:当前文件所在位置

5.第一个APi

视频的013:9:56

可以利用同步的缓存来优化文件输出,不用每次都得读一次文件,而是缓存后直接输出。

6.path模块

对路径操作

path.resolve()

7.使用npm

npm(node package manager)node包管理器。我们可以从上面下载模块,并导入使用

npm在node安装时,会自动安装。这里我们使用npm安装nodemonslugify来优化项目。

nodemon:用于服务器热更新
slugify:用于解析字符串、转换为url友好

学了半天都是再讲概念(都是自己知道的,因为写过python后端),我真的会谢