app.use(function(req, res, next) {
res.header("Access-Control-Allow-Origin", "*");
res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
next();
});
app.get('/', function(req, res, next) {
// Handle the get for this route
});
app.post('/', function(req, res, next) {
// Handle the post for this route
});
//.....
$scope.GO = function (data) {
$http.post('url', data).success(function(res){})
}
//....
<form>
<input ng-model="data.user.name" >
<input ng-model="data.settings" >
<button ng-click="GO(data)"></button>
</form>