我使用Angular将表单输入保存到$ scope.tag。我无法使用表单信息作为参数进行客户端外部API调用,因此我需要将其传递给服务器。我怎样才能做到这一点?
步骤:
我怎样才能做到这一点?
$scope.tag = '';
// client side
$http.get('/api')
.then(function(response) {
console.log(response);
});
// server side
app.get('/api', function (req, res) {
request('http://externalAPI.com/' + $scope.tag, function (req, res) {
res.json(data);
});
});
答案 0 :(得分:3)
您可以这样做:
// client side
$http.post('/api', { tag: $scope.tag })
.then(function(response) {
console.log(response);
});
// server side
app.post('/api', function (req, res) {
console.log(req.query.tag);
res.json({ status: 'success' });
});
请记住在路由中间件之前加入app.use(bodyParser.json());
。