express 主页 I love you!download
example.htm内容:
后端代码
var express = require("express");
var app = express();
app.get("public/example.htm",function(req,res){
/*res.json({
name:'sinson',
sex:'male'
})*/
res.sendFile("public/example.htm");
res.end();
})
但是结果是Failed to load resource: the server responded with a status of 404 (Not Found)
Cannot GET /public/example.htmCopyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
app.get("/public/example.htm",function(req,res,next){ res.sendFile(__dirname+"/public/example.htm"); return; })res.sendFile(path [, options] [, fn])
Unless the root option is set in the options object, path must be an absolute path to the file