Skip to content
Readerstacks logo Readerstacks
  • Home
  • Softwares
  • Angular
  • Php
  • Laravel
  • Flutter
Readerstacks logo
Readerstacks

How to submit multipart form data in angular reactive form ?

Aman Jain, September 12, 2021October 31, 2021

In this tutorial, you will learn uploading a multipart reactive form in angular using HttpClient. In a webpage uploading files as multipart form data is a important aspect.

If you are a new then you can read What is Angular and how to install angular ?

So, for this tutorial we required knowledge of Angular component, html, typescript and php.

Step 1 : Create a component

You can create component using command line or manually

ng g component UploadFile

Step 2 : Import HttpClientModule and ReactiveFormModule in app.module.ts

Import two important module HttpClientModule and ReactiveFormModule form @angular/common/http and @angular/forms

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';

import { AppComponent } from './app.component';
import { HelloComponent } from './hello.component';
import { HttpClient } from '@angular/common/http';
import { HttpClientModule } from '@angular/common/http';
import { UploadFileComponent } from './upload-file/upload-file.component';

@NgModule({
  imports: [BrowserModule, FormsModule, ReactiveFormsModule, HttpClientModule],
  declarations: [AppComponent, UploadFileComponent, HelloComponent],
  bootstrap: [AppComponent]
})
export class AppModule {}

Step 3: Create form group and upload function

Now, we are importing FormGroup, HttpClient, FormControl and Validators.

Here, we create two fields name and image. Next we created onChange function to handle the file input change event. then we have uplaodFile method to upload the multipart data from FormData class.

import { Component, OnInit } from '@angular/core';
import { FormControl, FormGroup, Validators } from '@angular/forms';
import { HttpClient } from '@angular/common/http';

@Component({
  selector: 'app-upload-file',
  templateUrl: './upload-file.component.html',
  styleUrls: ['./upload-file.component.css']
})
export class UploadFileComponent implements OnInit {
  form: FormGroup = new FormGroup(
    {
      name: new FormControl("", [Validators.required, Validators.minLength(4)]),
      image: new FormControl("", [Validators.required, Validators.email]),
    }

  );
  constructor(public http: HttpClient) { }

  ngOnInit(): void {
  }

  onChange(e: any) {
    let extensionAllowed: any = { "png": true, "jpeg": true };
    let file = e.target.files[0];
    if (file.size / 1024 / 1024 > 20) {
      alert("File size should be less than 20MB")
      return;
    }
    if (extensionAllowed) {
      var nam = file.name.split('.').pop();
      if (!extensionAllowed[nam]) {
        alert("Please upload " + Object.keys(extensionAllowed) + " file.")
        return;
      }
    }
    this.form.controls["image"].setValue(file);
  }
  uplaodFile() {
    let form = this.form.value;
    const uploadData = new FormData();
    for (let input_name in form) {
      if (form[input_name] instanceof Blob) // check is file
      {
        uploadData.append(input_name, form[input_name], form[input_name].name ? form[input_name].name : "");
      }
      else
        uploadData.append(input_name, form[input_name]);
    }

    return this.http.post('https://readerstacks.com/demo/php.php', uploadData)
      .subscribe(data => {
        alert(JSON.stringify(data));
      });  }

}

Step 4 : Create html file and form

Here, we have created a form with 2 inputs named as name and image. formGroup attribute to bind the form with angular reactive form.

<form [formGroup]="form" (submit)="uplaodFile()">
    <div class="form-group">
        <div class="">

            <input placeholder="Name" formControlName="name" type="text" required>
            <span *ngIf="form.controls.name.touched 
            &&  form.controls.name.invalid">This field is required</span>

        </div>
    </div>
     <div class="form-group">
        <div class="">

            <input 
            (change)="onChange($event)"
             multiple 
             placeholder="Pictures"   
             type="file" required>
        </div>
    </div>
    
    <div class="form-group btn-group">

        <button class="" type="submit"  >Submit</button>
    </div>
</form>

Output:

Screenshot 2021 09 12 at 11.16.44 AM

Php FIle: index.php

<?php
echo json_encode(["post"=>$_POST,"file"=>$_FILES]);
?>

Live Preview:

Related

Javascript Angular

Post navigation

Previous post
Next post

Related Posts

Javascript Angular Keypress Enter Event on Input Example

Angular Keypress Enter Event on Input Example ?

September 21, 2022March 16, 2024

Input events in angular can be handled using input and output decorators and in this tutorial we will learn Angular Keypress Enter Event on Input with Example. In core javascript we use onkeypress event to handle the key events of input but in angular it there is different way to…

Read More
Angular ng-container with example

What is ng-container in angular 12 ?

October 24, 2021November 5, 2023

In this article we will learn about the ng-container of angular. ng-container is a logical container where we can add condition and it will never show in dom tree. so, basically we can say that ng-container is useful where we want to apply some condition or change in logical layout…

Read More

How many type of methods in Restful api?

August 28, 2021February 22, 2024

Restful api is very useful today while creating a mobile application or web application. Restful api or Http request methods There is 4 types of method of http request. Post Get Put Delete Patch 1. Post method Post method is widely used to fetch the content of a form or…

Read More

Aman Jain
Aman Jain

With years of hands-on experience in the realm of web and mobile development, they have honed their skills in various technologies, including Laravel, PHP CodeIgniter, mobile app development, web app development, Flutter, React, JavaScript, Angular, Devops and so much more. Their proficiency extends to building robust REST APIs, AWS Code scaling, and optimization, ensuring that your applications run seamlessly on the cloud.

Categories

  • Angular
  • CSS
  • Dart
  • Devops
  • Flutter
  • HTML
  • Javascript
  • jQuery
  • Laravel
  • Laravel 10
  • Laravel 11
  • Laravel 9
  • Mysql
  • Php
  • Softwares
  • Ubuntu
  • Uncategorized

Archives

  • May 2025
  • April 2025
  • October 2024
  • July 2024
  • February 2024
  • January 2024
  • December 2023
  • November 2023
  • October 2023
  • July 2023
  • March 2023
  • November 2022
  • October 2022
  • September 2022
  • August 2022
  • July 2022
  • June 2022
  • May 2022
  • April 2022
  • March 2022
  • February 2022
  • January 2022
  • December 2021
  • November 2021
  • October 2021
  • September 2021
  • August 2021
  • July 2021
  • June 2021

Recent Posts

  • Understanding High Vulnerabilities: A Deep Dive into Recent Security Concerns
  • Understanding High Vulnerabilities in Software: A Week of Insights
  • Blocking Spam Requests with LaraGuard IP: A Comprehensive Guide
  • Enhancing API Development with Laravel API Kit
  • Exploring the Future of Web Development: Insights from Milana Cap
©2023 Readerstacks | Design and Developed by Readerstacks
Go to mobile version