File Upload with Angular Material

后端 未结 12 1087
抹茶落季
抹茶落季 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:44

    For Angular 6+:

    HTML:

    
    
    

    Component method:

      csvInputChange(fileInputEvent: any) {
        console.log(fileInputEvent.target.files[0]);
      }
    

    Note: This filters to just allow .csv files.

提交回复
热议问题