简体   繁体   English

使用Angularjs中的rest api上传图片

[英]Image upload using rest api in Angularjs

I have to upload image using rest api for successfull upload will get the response of file folder destination ex: D:/ddd/download ,I am not able to upload image, below is my code given suggest me any corrections. 我必须使用rest api上传图片才能成功上传将获得文件夹目标的响应ex: D:/ddd/download ,我无法上传图片,下面是我给出的代码建议我进行任何更正。 while uploading image i have to give parameter name as fileData. 上传图片时我必须将参数名称作为fileData。 api ex: http://somelink and parameter for post is fileData api ex: http:// somelink和post的参数是fileData

Html code Html代码

<input type = "file" file-model = "myFile"/>
<button ng-click = "uploadFile()">upload me</button>

my service and directive 我的服务和指示

 myApp.directive('fileModel', ['$parse', function ($parse) {
        return {
           restrict: 'A',
           link: function(scope, element, attrs) {
              var model = $parse(attrs.fileModel);
              var modelSetter = model.assign;

              element.bind('change', function(){
                 scope.$apply(function(){
                    modelSetter(scope, element[0].files[0]);
                 });
              });
           }
        };
     }]);

     myApp.service('fileUpload', ['$http', function ($http) {
        this.uploadFileToUrl = function(file, uploadUrl){
           var fd = new FormData();
           fd.append('file', file);

           $http.post(uploadUrl, fd, {
              transformRequest: angular.identity,
              headers: {'Content-Type': undefined}
           })

           .success(function(){
           })

           .error(function(){
           });
        }
     }]);

my controller file 我的控制器文件

 $scope.uploadFile = function(){
                var data={
            'fileData':$scope.myFile
    }
    var uploadUrl = "http://";
    fileUpload.uploadFileToUrl(data, uploadUrl).success(function(response) {
        $scope.fileName=response;
    })
   };

Please check on this... Controller: 请检查...控制器:

   $scope.uploadFile = function () {
          var file = $scope.myFile;
          console.log(file);
          if(file.type==='image/jpeg' || file.type==='image/jpg' || file.type==='image/png'  ){
          var uploadUrl = "http://";
          fileUpload.uploadFileToUrl(file, uploadUrl);
          angular.element('input[type="file"]').val(null);

          }else{
             $scope.errorMessage='File Type Error';
          }
        };

Service: 服务:

myApp.service('fileUpload', ['$http', function ($http) {

    this.uploadFileToUrl = function (file, url) {

      var uploadUrl = url;
      var fd = new FormData();
      fd.append('file', file);
      $http.post(uploadUrl, fd, {
        transformRequest: angular.identity,
        headers: {'Content-Type': undefined}
      })
        .success(function () {
          console.log("Image Save");
        })
        .error(function () {
        });
    };

 }]);

You want to pass a the file itself to the formdata object 您希望将文件本身传递给formdata对象

fileUpload.uploadFileToUrl($scope.myFile, uploadUrl).success(function(response) {
    $scope.fileName=response;
})

and set the first parameter of append as fileData 并将第一个append参数设置为fileData

fd.append('fileData', file);

Hi friends now the image upload is working, i have removed service and done changes to my controller by adding below code. 嗨朋友现在图像上传工作,我已经删除了服务,并通过添加下面的代码完成了对我的控制器的更改。

var file = $scope.myFile;
    var uploadUrl = "http://";
    var fd = new FormData();
    fd.append('fileData', file);
    $http.post(uploadUrl, fd, {
        transformRequest: angular.identity,
        headers: {'Content-Type': undefined}
    })
    .success(function(response){
        $rootScope.fileValue = response;

    })

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM