Node内置模块
拓展:Node内置模块
1. http模块
- 可以实现搭建服务器,请求数据等功能
- 引入模块:
const http = require('http');
- 创建服务:
const server = http.createServer((request, response)=>{});
// 返回http对象- require:请求:浏览器 -> 服务器
req.url
地址,提取地址栏数据req.on('data|end');
提取非地址栏数据,所有的http[s]都会触发data事件和end事件
- response:响应:服务器 -> 浏览器
- 响应头设置:
res.writeHead(200,{'Content-Type':'text/html;charset=utf-8'});
res.write(字符/数据<string><buffer>);
res.end();
结束响应
- 响应头设置:
- require:请求:浏览器 -> 服务器
- 监听:
server.listen(端口,[地址],[回调函数]);
- 端口:1-65535,1024以下系统占用,80
- 地址(可选):
- 虚拟域名:localhost或127.0.0.1
- 真实域名:xx.duapp.com
- 回调(可选):监听成功,执行回调函数
- 小提示:
- 服务器代码更新后,需要重启服务器
- 自动重启工具:
nodemon
- 可在命令行中通过npm全局安装该模块:
npm install nodemon -g
- 使用:
nodemon 文件
- 自动重启工具:
- 接口测试工具
- postman
- 服务器代码更新后,需要重启服务器
- 服务端发起get请求:
http|https.get("url", 回调);
1 | const https = require("https"); |
- 服务端发起post请求:
http|https.request(ops, 回调);
1 | const https = require("https"); |
2. fs模块 - file system文件服务
- 引入模块:
const fs = require('fs');
- 异步读文件:
fs.readFile('路径',[配置],回调(err,data))
- err:报错信息,null或者undefined,表示没有错误
- data:二进制buffer流 ,可以通过
data.toString("utf-8")
转换格式
- 同步读文件:
let data = fs.readFileSync('路径',[配置])
- 免去回调地狱,但会阻塞其他程序执行,比较占用时间
- 建议使用
try-catch
语句捕获同步语句的错误
- 异步写文件:
fs.writeFile('路径','内容',回调(err))
- err:保存信息,null或者undefined,表示没有错误
- 同步写文件:
let data = fs.writeFileSync('路径','内容')
- 免去回调地狱,但会阻塞其他程序执行,比较占用时间
- 删除文件:
fs.unlink('路径',回调)
- 文件重命名:
fs.rename('老文件名','新文件名',(err)=>{})
- 实现静态资源托管:
- 什么是静态资源: css/html/js/图片/json/字体…
- 前端资源请求:
href``src``locaction.href
- 后端资源读取:
fs.readFile(文件名,[编码],回调(err,data));
3. url模块 - 地址
- 作用:解析或转换url数据
- 引入:
const url = require("url");
- 使用:
- 字符转对象
const str = "http://localhost:8002/aaa?username=sdfsdf&content=234234#title4";
url.parse(str, true)
- true 处理query数据,直接转成对象
- obj参数
- protocol: ‘http:’, 协议
- slashes: true, 双斜杠
- auth: null, 作者
- host: ‘localhost:8002’, 主机 www.baidu.com
- port: ‘8002’, 端口
- hostname: ‘localhost’, baidu
- hash: ‘#title’, 哈希(锚)
- search: ‘?username=sdfsdf&content=234234’, 数据
- query: ‘username=sdfsdf&content=234234’, 数据
- pathname: ‘/aaa’, 文件路径
- path: ‘/aaa?username=sdfsdf&content=234234’, 文件路径
- href: ‘http://localhost:8002/aaa?username=sdfsdf&content=234234#title‘
- 对象转字符
url.format(obj)
- 字符转对象
4. querystring 模块 - 查询字段
- 作用:处理query数据
- 引入:
const querystring = require("querystring");
- 字符转对象:
const str = "key=value&key2=value2";
querystring.parse(str)
- 对象转字符
const obj = {a:10, b:20}
querystring.stringify(obj)
- escape/unescape
- 对数据中的中文或特殊符号进行转义,防止脚本注入攻击
const str = 'id=3&city=北京&url=https://www.baidu.com';
querystring.escape(str);
const str = 'id%3D3%26city%3D%E5%8C%97%E4%BA%AC%26url%3Dhttps%3A%2F%2Fwww.baidu.com';
querystring.unescape(str);
5. path模块 - 路径
- 作用:处理路径数据
- 引入:
const path = require("path");
- 合并路径 - 使用特定于平台的分隔符作为分隔符将所有路径部分连接,生成规范路径
const str = path.join("aa", "qwe", "hello", "index.html");
- MAC:
aa/qwe/hello/index.html
- Windows:
aa\\qwe\\hello\\index.txt
6. 关于路径的全局变量
- 全局变量:
__dirname
- 用户获取当前文件所在文件夹的绝对路径
- 全局变量:
__filename
- 用户获取当前文件的绝对路径
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来源 !
评论