在我的控制台中。这是给我的日志。
zone.js:1382 POST http://localhost:3000/app/service/getDataService.php 404(未找到)
但如果我把它放在网址上。它会被下载。这意味着我的应用程序中存在此脚本。
这就是我所拥有的。
import { Injectable } from '@angular/core';
import { Http, Response, Headers } from '@angular/http';
import { Observable } from 'rxjs/Rx';
@Injectable()
export class GetNewDataService {
constructor(private http: Http) { }
private url = 'app/service/getDataService.php';
getData(bangko) {
let headers = new Headers();
headers.append('Content-Type', 'application/x-www-form-urlencoded; charset=UTF-8');
let bank = `bank=${bangko}`;
return this.http.post(this.url, bank, {
headers: headers
}).subscribe(res => {
return res;
});
}
}
任何帮助将不胜感激。感谢。