 
                        
server.js
var connect=require('connect');
serveStatic=require('serve-static');
var app=connect();
app.use(serveStatic("../angularjs"));
app.listen(5000);
运行server.js没反应,localhost:5000/test.html显示cant get test/html
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
app.use(serveStatic("./angularjs"));这一行地址不对