Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to submit a form using angular 2 http post function using javascript?

I've started to learning Angular2 but I want to submit a form using http.post() to my Web API but I can't.

like image 973
Nazmus Sakib Avatar asked Jan 29 '16 15:01

Nazmus Sakib


1 Answers

Within your component, you simply need to attach a listener on the submit event and leverage the http object to execute the HTTP request. This object was previously injected into the constructor of the component.

var Cmp = ng.core.
  Component({
    selector: 'cmp'
    template: `
      <form (submit)="submitForm()">
        <input [(ngModel)]="element.name"/>

        <button type="submit">Submit the form</button>
      </form>
    `
  }).
  Class({
    constructor: [ ng.http.Http, function(http) {
      this.http = http;
    }],

    submitForm: function() {
      var headers = new ng.http.Headers();
      headers.append('Content-Type', 'application/json');

      this.http.post('http://...', JSON.stringify(this.element), {
        headers: headers
      }).subscribe(function(data) {
        console.log('received response');
      });
    }
  });

You need to add the HTTP_PROVIDERS when bootstrapping your application:

document.addEventListener('DOMContentLoaded', function() {
  ng.platform.browser.bootstrap(Cmp, [ ng.http.HTTP_PROVIDERS]);
});

Here is the corresponding plunkr: https://plnkr.co/edit/Fl2pbKxBSWFOakgIFKaf?p=preview.

Hope it helps you, Thierry

like image 95
Thierry Templier Avatar answered Oct 11 '22 00:10

Thierry Templier