/**
* 目标: 基于http模块创建Web服务程序
*
* 1.1 加载http模块, 创建Web服务对象
* 1.2 监听request请求事件, 设置响应头和响应体
* 1.3 配置端口号并启动Web服务
* 1.4 浏览器请求: http://localhost:3000 测试
*
*/
// 加载http模块, 创建web服务对象
const http = require('http');
const server = http.createServer()
// 监听request请求事件, 设置响应头和响应体
server.on('request', (req, res) => {
// 设置响应头, 内容类型 - 普通文本以及中文编码格式
res.setHeader('Content-Type', 'text/plain;charset=utf-8')
// 设置响应体内容, 结束本次请求与响应
res.end('欢迎使用Node.js 和http模块创建的Web服务')
})
// 配置端口号并启动Web服务
server.listen(4000, () => {
console.log('启动成功');
})
// 案例 - 浏览压缩后的html页面
/**
*
* 目标: 基于Web服务, 开发提供网页资源的功能
* 步骤:
* 1. 基于http模块, 创建Web服务
* 2. 使用req.url获取请求资源路径, 并读取index.html里字符串内容返回给请求方
* 3. 其他路径, 暂时返回不存在提示
* 4. 运行Web服务, 用浏览器发起请求
*
*/
const fs = require('fs')
const path = require('path')
const http = require('http');
const server = http.createServer()
server.on('request', (req, res) => {
if (req.url === '/index.html') {
fs.readFile(path.join(__dirname, 'dist/index.html'), (err, data) => {
if(err) console.error(err)
else {
res.setHeader('Content-Type', 'text/html;charset=utf-8');
res.end(data.toString())
}
})
} else {
res.setHeader('Content-Type', 'text/html;charset=utf-8')
res.end('你要访问的资源不存在')
}
})
server.listen(3000, () => {
console.log('3000端口请求成功');
})
http模块 - 创建Web服务以及案例
怕冷的火焰(~杰)2024-09-07 9:54
相关推荐
无奈何杨17 分钟前
扣子coze的AI工作流搭建技术,开源项目FlowGram流程搭建引擎ElasticPDF-新国产PDF编辑器26 分钟前
Angular 项目 PDF 批注插件库在线版 API 示例教程6武730 分钟前
Vue 数据传递流程图指南jakeswang1 小时前
查询条件与查询数据的ajax拼装samuel9181 小时前
axios取消重复请求三天不学习1 小时前
JiebaAnalyzer 分词模式详解【搜索引擎系列教程】滿1 小时前
Vue 3 中按照某个字段将数组分成多个数组安分小尧2 小时前
[特殊字符] 使用 Handsontable 构建一个支持 Excel 公式计算的动态表格好_快2 小时前
Lodash源码阅读-baseClone