在网络标签和console.log中未显示任何内容(“已成功发布”)

时间:2018-08-29 22:11:30

标签: angularjs node.js console.log

前端

customer.controller("new_info", 
  function($scope, $routeParams,$http)
  {    
    $scope.customer = {};
    $scope.register = function () {
      $http.post('localhost:4000/new_info', $scope.customer).then(
        function (response) { 
          console.log("posted successfully");
        }
    );
  }
});

后端

 app.post('/new_info',(req,res)=>{ console.log(req.body); });

0 个答案:

没有答案