67

我有一个名为“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);
});
};
4

7 回答 7

78
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.');

我没有测试你的代码,但其他的东西有效

如果你想从请求 url 中获取路径信息

 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/

于 2013-09-21T10:48:40.080 回答
15

只需调用req.url. 那应该做的工作。你会得到类似的东西/something?bla=foo

于 2014-04-30T22:00:19.013 回答
8

您可以在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);
于 2016-07-26T08:46:48.243 回答
5
req.protocol + '://' + req.get('host') + req.originalUrl

或者

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

于 2017-04-16T10:51:33.817 回答
3

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

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

返回一个带有路径的数组。

于 2017-02-18T08:43:13.257 回答
0

使用URLWebAPI 的更现代的解决方案:

(req, res) => {
  const { pathname } = new URL(req.url || '', `https://${req.headers.host}`)
}
于 2021-01-04T18:19:56.260 回答
-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', '', '' ]
于 2018-07-03T09:19:21.327 回答