私はこの2つの方法でhttp.get()
呼び出しを試みました。イオン2 http.get()問題
まず:
getResults(){
return this.http.get('http://localhost/api.php')
.toPromise()
.then(data => data.json());
}
エラーが表示:
3 122412 error EXCEPTION: Uncaught (in promise): Response with status:0 for URL: null
4 122413 error ORIGINAL STACKTRACE:
5 122413 error Error: Uncaught (in promise): Response with status: 0 for URL: null
..........
第二:
示されgetResults(){
return new Promise((resolve, reject) => {
this.http.get('http://localhost/api.php')
.map(res => res.json())
.subscribe(data => {
resolve(data);
}, (err) => {
reject(err);
});
});
}
エラー:
2 925052 error EXCEPTION: Uncaught (in promise): Response with status:0 for URL: null
3 925052 error ORIGINAL STACKTRACE:
4 925053 error Error: Uncaught (in promise): Response with status: 0 for URL: null
.......
どの方法を使用すればよいのでしょうか?ステータス
はい。それは私の問題を解決しました。 1票アップ;) –