前端开发,Node.js实现静态资源读取

静态资源目录:
前端开发,Node.js实现静态资源读取_第1张图片

readfile.js

const http=require('http');
const fs=require('fs');
const path=require('path');
// 导入的时候require()
const J_GetIndex=require('./getIndex.js');

let server=http.createServer((req,res)=>{
	// req.url获取请求地址 /favicon.ico地址是自动请求的
	if(req.url=='/favicon.ico') return;

	// startsWith(), a.startsWith(b)字符串以b开始的时候为真
	if(req.url.startsWith('/taobao')){
		// node没有静态资源读取能力,只能自己书写代码实现
	    // 请求的地址和实际加载地址不一样
		// 读取index.html文件内容 path.join('路径','路径')
		J_GetIndex.demo(req,res);
		// 把读取内容呈递给前台
	}else if(req.url.startsWith('/jd')){
		J_GetIndex.demo(req,res);

	}else{
		res.end(`Not Found
		The requested URL ${req.url} was not found on this server.`)
	}
**});
server.listen('8989')

getIndex.js

const fs=require('fs');
const path=require('path');

// 需要导出exports
exports.demo=function (req,res){
	fs.readFile(path.join(__dirname,'www',req.url),(err,data)=>{
		if(err) throw err;
		res.end(data);
	})
}

运行结果:
前端开发,Node.js实现静态资源读取_第2张图片

你可能感兴趣的:(node.js,node.js,javascript)