node.js学习(二) 利用Express 托管静态文件

为了提供诸如图像、CSS 文件和 JavaScript 文件之类的静态文件,使用 Express 中的 express.static 内置中间件函数。

1.首先,创建目录:
创建目录和入口文件,public目录为静态文件,app.js 为入口文件
在这里插入图片描述
2.打开浏览器,访问 http://localhost:3000/public/hellow.html
就可以访问 public目录下hellow.html文件了

const express=require('express');
const app=express();
app.use(express.static('public'));
app.listen(3000,()=>{
	console.log("runing...");
});

hellow.html文件代码:
在这里插入图片描述
在这里插入图片描述
3.虚拟路径
直接上代码:

const express=require('express');
const app=express();
app.use('/static', express.static('public'))  // 添加 /static  虚拟路径
app.listen(3000,()=>{
	console.log("runing...");
});

访问:http://localhost:3000/static/hellow.html
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值