Angular 2 | How to handle input type file in FormControl?

后端 未结 2 1686
孤街浪徒
孤街浪徒 2021-02-06 10:06

Good day,

How can i handle input type file in formControl? im using reactive form but when i get the value of my form it returns null value on my

相关标签:
2条回答
  • You need to write your own FileInputValueAccessor. Here is the plunker and the code:

    @Directive({
      selector: 'input[type=file]',
      providers: [
        {
          provide: NG_VALUE_ACCESSOR,
          useExisting: FileValueAccessorDirective,
          multi: true
        }
      ]
    })
    export class FileValueAccessorDirective implements ControlValueAccessor {
      onChange;
    
      @HostListener('change', ['$event.target.value']) _handleInput(event) {
        this.onChange(event);
      }
    
      constructor(private element: ElementRef, private render: Renderer2) {  }
    
      writeValue(value: any) {
        const normalizedValue = value == null ? '' : value;
        this.render.setProperty(this.element.nativeElement, 'value', normalizedValue);
      }
    
      registerOnChange(fn) {    this.onChange = fn;  }
    
      registerOnTouched(fn: any) {  }
    
      nOnDestroy() {  }
    }
    

    And then you will be able to get updates like this:

    @Component({
      moduleId: module.id,
      selector: 'my-app',
      template: `
          <h1>Hello {{name}}</h1>
          <h3>File path is: {{path}}</h3>
          <input type="file" [formControl]="ctrl">
      `
    })
    export class AppComponent {
      name = 'Angular';
      path = '';
      ctrl = new FormControl('');
    
      ngOnInit() {
        this.ctrl.valueChanges.subscribe((v) => {
          this.path = v;
        });
      }
    }
    
    0 讨论(0)
  • 2021-02-06 11:05

    there is no way to handle this in angular form-control. we can provide some hack to make this work if you want to upload the image. just add the <input type=file> as form control on which user can add the file and acter grabbing the file we can change it to the base64code and then assign that value to the hidden field of our main form. then we can store the image file in that way.

    else you can go for the ng-file-upload moduleng file upload

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