我想发送server.js
(在AngularJS控制器中)设置id
参数,如下所示:
$http
.get('/getCst', {
params: {
id: customerID
}
})
.success(function (data,status) {
$scope.customer = data
});
但我不确定这是否是正确的方式以及在Node.js中写什么server.js
:
app.get('/getCst', function (req, res) {
console.log(//how do i get the id sent by the client?);
});
答案 0 :(得分:3)
这是我的解决方案
app.get('/getCst/:id', function (req, res, next) {
var id = req.params.id;
});
答案 1 :(得分:0)
试试这个:
app.get('/getCst:id', function (req, res) {
console.log(req.param('id'));
});
答案 2 :(得分:0)
app.get('/ getCst',function(req,res){
var id = req.query.id;
});