Node.js:从请求中获取路径

时间:2013-09-21 10:18:19

标签: javascript node.js express

我有一个名为“localhost:3000 / returnStat”的服务,它应该将文件路径作为参数。例如'/BackupFolder/toto/tata/titi/myfile.txt'。

如何在浏览器上测试此服务? 如何使用Express格式化此请求?

exports.returnStat = function(req, res) {

var fs = require('fs');
var neededstats = [];
var p = __dirname + '/' + req.params.filepath;

fs.stat(p, function(err, stats) {
    if (err) {
        throw err;
    }
    neededstats.push(stats.mtime);
    neededstats.push(stats.size);
    res.send(neededstats);
});
};

7 个答案:

答案 0 :(得分:51)

var http = require('http');
var url  = require('url');
var fs   = require('fs');

var neededstats = [];

http.createServer(function(req, res) {
    if (req.url == '/index.html' || req.url == '/') {
        fs.readFile('./index.html', function(err, data) {
            res.end(data);
        });
    } else {
        var p = __dirname + '/' + req.params.filepath;
        fs.stat(p, function(err, stats) {
            if (err) {
                throw err;
            }
            neededstats.push(stats.mtime);
            neededstats.push(stats.size);
            res.send(neededstats);
        });
    }
}).listen(8080, '0.0.0.0');
console.log('Server running.');

我没有测试过您的代码,但其他工作正常

如果您想从请求网址获取路径信息

 var url_parts = url.parse(req.url);
 console.log(url_parts);
 console.log(url_parts.pathname);

1.如果您获取的URL参数仍然无法读取文件,请在我的示例中更正您的文件路径。如果将index.html放在与服务器代码相同的目录中,它将起作用......

2.如果您想要使用节点托管大文件夹结构,那么我建议您使用像expressjs这样的框架

如果您希望原始解决方案为文件路径

var http = require("http");
var url = require("url");

function start() {
function onRequest(request, response) {
    var pathname = url.parse(request.url).pathname;
    console.log("Request for " + pathname + " received.");
    response.writeHead(200, {"Content-Type": "text/plain"});
    response.write("Hello World");
    response.end();
}

http.createServer(onRequest).listen(8888);
console.log("Server has started.");
}

exports.start = start;

来源:http://www.nodebeginner.org/

答案 1 :(得分:8)

只需致电req.url即可。应该做的工作。你会得到像/something?bla=foo

这样的东西

答案 2 :(得分:5)

您可以在app.js文件中使用此功能。

var apiurl = express.Router();
apiurl.use(function(req, res, next) {
    var fullUrl = req.protocol + '://' + req.get('host') + req.originalUrl;
    next();
});
app.use('/', apiurl);

答案 3 :(得分:3)

req.protocol + '://' + req.get('host') + req.originalUrl

req.protocol + '://' + req.headers.host + req.originalUrl //我喜欢这个,因为它从代理服务器中幸存下来,获得原始主机名

答案 4 :(得分:2)

基于@epegzz对正则表达式的建议。

( url ) => {
  return url.match('^[^?]*')[0].split('/').slice(1)
}

返回带路径的数组。

答案 5 :(得分:-1)

使用快递请求时将以上解决方案组合在一起:

let url=url.parse(req.originalUrl);
let page = url.parse(uri).path?url.parse(uri).path.match('^[^?]*')[0].split('/').slice(1)[0] : '';

这将处理所有类似情况

localhost/page
localhost:3000/page/
/page?item_id=1
localhost:3000/
localhost/

等一些例子:

> urls
[ 'http://localhost/page',
  'http://localhost:3000/page/',
  'http://localhost/page?item_id=1',
  'http://localhost/',
  'http://localhost:3000/',
  'http://localhost/',
  'http://localhost:3000/page#item_id=2',
  'http://localhost:3000/page?item_id=2#3',
  'http://localhost',
  'http://localhost:3000' ]
> urls.map(uri => url.parse(uri).path?url.parse(uri).path.match('^[^?]*')[0].split('/').slice(1)[0] : '' )
[ 'page', 'page', 'page', '', '', '', 'page', 'page', '', '' ]

答案 6 :(得分:-1)

使用 URL WebAPI 的更现代的解决方案:

(req, res) => {
  const { pathname } = new URL(req.url || '', `https://${req.headers.host}`)
}