使用ng-file-upload数据无法进入后端

时间:2016-12-17 05:31:19

标签: angularjs node.js express ng-file-upload

我正在使用AngularJs作为我的前端。我正在使用 ng-file-upload 来阅读图片并将其传递给我的后端,但它发送REST 打电话给我的后端,但它没有发送任何数据到我的后端。 代码:

$scope.uploadData = function(){

    var tempData = {file: $scope.file, 'data': $scope.news};

    Upload.upload({
          url: '/createNEWS',
          data: tempData
    })

};

我的后端获得{}表示null

0 个答案:

没有答案