Winkel-2 http-request mit Access-Control-Allow-Origin auf *

Ich bin mit angular2 und Typoskript.

Ich versuche, die post an meine E-mail-Schimpanse-Abo-Liste.

Mein code bisher:

 constructor(router: Router, http: Http){   
      this.router = router;

      this.http = http; 
      this.headers = new Headers();
      this.headers.append('Content-Type', 'application/json');
      this.headers.append('Access-Control-Allow-Origin', '*');
  }

  subscribe = () => {
        var url = "https://thepoolcover.us10.list-manage.com/subscribe/post?u=b0c935d6f51c1f7aaf1edd8ff&id=9d740459d3&subscribe=Subscribe&EMAIL=" + this.email;
        this.isSuccess = false;

        this.http.request(url, this.headers).subscribe(response => {
           console.log(response);
           this.isSuccess = true; 
        });   
  }

Dies ist der Fehler, ich bekomme in meiner Konsole:

Winkel-2 http-request mit Access-Control-Allow-Origin auf *

Ich bekomme diese Fehlermeldung jetzt: Uncaught SyntaxError: Unexpected token <

Aktuellen code unter:

export class Footer{
  email: string = "";
  router : Router;
  http : Http;
  jsonp: Jsonp;
  isSuccess: boolean = false;

  constructor(router: Router, jsonp: Jsonp, http: Http){   
      this.router = router;
      this.http = http; 
      this.jsonp = jsonp;
  }

  subscribe = () => {
        var url = "https://thepoolcover.us10.list-manage.com/subscribe/post?u=b0c935d6f51c1f7aaf1edd8ff&id=9d740459d3&subscribe=Subscribe&EMAIL=" + this.email;
        this.isSuccess = false;

        this.jsonp.request(url).subscribe(response => {
           console.log(response);
           this.isSuccess = true; 
        });   
  }

InformationsquelleAutor der Frage AngularM | 2016-02-02

Schreibe einen Kommentar