File Upload with Angular Material

后端 未结 12 1091
抹茶落季
抹茶落季 2021-01-30 15:48

I\'m writing an web app with AngularJS and angular-material. The problem is that there\'s no built-in component for file input in angular-material. (I feel that file uploading d

12条回答
  •  旧时难觅i
    2021-01-30 16:37

    Another hacked solution, though might be a little cleaner by implementing a Proxy button:

    HTML:

    
    
      
    
    

    JS:

    app.controller('NiceCtrl', function ( $scope) {
      $scope.upload = function () {
        angular.element(document.querySelector('#fileInput')).click();
      };
    };
    

提交回复
热议问题