File Upload with Angular Material

后端 未结 12 1058
抹茶落季
抹茶落季 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条回答
  •  生来不讨喜
    2021-01-30 16:42

    I've join some informations posted here and the possibility of personalize components with Angular Material and this is my contribution without external libs and feedback with the name of the chosen file into field:

    HTML

    
        {{selectedFiles.item(0).name}}
        
            Choose file
        
        
        
        
    
    

    TS

    selectFile(event) {
        this.selectedFiles = event.target.files;
    }
    

提交回复
热议问题