这是我在Node.js上运行的快速应用程序
var express = require('express');
var app = express();
app.get('/', function(req, res){
res.send('id: ' + req.query.id);
});
app.listen(3000);
console.log('working...');
//so i need url id as var
var gotID = req.query.id
//want to use this data to another js file
module.exports = gotID;
所以我想把这个URL id作为我的变量。
看起来像这个网址
http://localhost:3000/[id that i want]
那我该怎么办?
我是Node.js的新手
答案 0 :(得分:7)
这应该适合你:
app.get('/:id', function(req, res) {
res.send('id: ' + req.params.id);
});
req.query用于搜索查询参数(即?
中http://something.com/path?foo=var
之后的所有内容)