How to use input type file in angular material

后端 未结 4 1226
萌比男神i
萌比男神i 2021-02-01 02:50

How to use input type file in angular material

Hi, I am using angular material for designing. when i go on angular material site there no input type fil

相关标签:
4条回答
  • 2021-02-01 03:19

    If you dont want to use some strange workaround, then just dont place input into the mat-form-field. You can place it outside the mat-form-field but still include the value into the FormGroup. Check the example

    <form [formGroup]="someForm"  (ngSubmit)="onSubmit()">
                <!--input outside the form-field-->
                <input type="file" (Change)="onChange($event)"/>
                <mat-form-field>
                    <!--input inside the form-field-->
                    <input matInput formControlName="someFCN">
                </mat-form-field>
                <button mat-raised-button>Submit</button>
    </form>
    
    
    
    
    import { FormBuilder, FormGroup, Validators } from '@angular/forms';
    
    someForm: FormGroup;
    
    constructor(private formBuilder: FormBuilder) {}
    ngOnInit(): void {
        this.someForm = this.formBuilder.group({
              someFCN: [{ value:'', disabled: false },Validators.required],
              file: { value:'', disabled: false }
            });
    }
    
    onChange(event: Event) {
        /*not sure what you want to do with file, i'll just set
        selected file´s name as value, but obviously u can do much more than just get file´s name.*/
        
        this.someForm.controls['file'].setValue(event.target.files[0].name);
    }
    
    onSubmit() {
        return this.someForm.getRawValue();
    }
    
    0 讨论(0)
  • 2021-02-01 03:25

    Angular Material does not support yet a workaround for file upload. There are alternative to archieve this. e.g using external libraries.

    angular-material-fileupload: link to npm package

    Supported features:

    • Drag and drop
    • common uploads
    • progress bar
    • file size and more...

    ngx-material-file-input: Link to repository

    Supported features:

    • ngx-mat-file-input component, to use inside Angular Material mat-form-field
    • a FileValidator with maxContentSize, to limit the file size
    • a ByteFormatPipe to format the file size in a human-readable format
    • and more small minor features...

    Update

    See the answer here if you just need a workaround without external library https://stackoverflow.com/a/53546417/6432698

    0 讨论(0)
  • 2021-02-01 03:27

    Here is a workaround if all you want is a nicely displayed file input button.

    Html

    <button type="button" mat-raised-button (click)="fileInput.click()">Choose File</button>
    <input hidden (change)="onFileSelected()" #fileInput type="file" id="file">
    

    Component

    onFileSelected() {
      const inputNode: any = document.querySelector('#file');
    
      if (typeof (FileReader) !== 'undefined') {
        const reader = new FileReader();
    
        reader.onload = (e: any) => {
          this.srcResult = e.target.result;
        };
    
        reader.readAsArrayBuffer(inputNode.files[0]);
      }
    }
    

    Inspired by this Angular Material Github Issue comment https://github.com/angular/material2/issues/3262#issuecomment-309000588

    0 讨论(0)
  • 2021-02-01 03:34

    I would suggest you to checkout @angular-material-components/file-input.

    It is very Angular Material Compliant.

    0 讨论(0)
提交回复
热议问题