2017-03-13 56 views
1

您能告訴我爲什麼我無法訪問API服務嗎?當我在瀏覽器或Postman上輸入它時,它工作正常。爲什麼它不能與ionic2提供程序一起工作?使用Ionic2提供商的訪問API服務

提供者:

import { Injectable } from '@angular/core'; 
import { Http } from '@angular/http'; 
import 'rxjs/add/operator/map'; 

@Injectable() 
export class EventData { 
    data: any; 

    constructor(public http: Http) { 

    } 

    getEventList(): any { 
    if (this.data) { 
     return Promise.resolve(this.data); 
    } 

    return new Promise(resolve => { 
     this.http.get('https://mylink.com/admin/index.php?route=api/event') 
     .map(res => res.json()) 
     .subscribe(data => { 
      this.data = data; 
      resolve(this.data); 
     }); 
    }); 
    } 

} 

例外:

error_handler.js:54 EXCEPTION: Response with status: 302 Found for URL: https://www.mylink.com/admin/index.php?route=api/event ErrorHandler.handleError @ error_handler.js:54 IonicErrorHandler.handleError @ ionic-error-handler.js:58 next @ application_ref.js:348 schedulerFn @ async.js:93 SafeSubscriber.__tryOrUnsub @ Subscriber.js:223 SafeSubscriber.next @ Subscriber.js:172 Subscriber._next @ Subscriber.js:125 Subscriber.next @ Subscriber.js:89 Subject.next @ Subject.js:55 EventEmitter.emit @ async.js:79 NgZone.triggerError @ ng_zone.js:333 onHandleError @ ng_zone.js:294 t.handleError @ polyfills.js:3 e.runTask @ polyfills.js:3 invoke @ polyfills.js:3

更新:

getEventList(): any { 
    return new Promise(resolve => { 
     this.http.get('https://mylink.com/admin/index.php?route=api/event') 
     .map(res => { 
      console.log(res.headers.get('Location')); 
      console.log(JSON.stringify(res.headers,null,2)); 
      return res.json(); 
     }) 
     .subscribe(data => { 
      this.data = data; 
      resolve(this.data); 
     }); 
    }); 
    } 

赫德細節

enter image description here

郵差接頭:

Cache-Control →no-store, no-cache, must-revalidate, post-check=0, pre-check=0 
Connection →Keep-Alive 
Content-Length →2811 
Content-Type →application/json 
Date →Tue, 14 Mar 2017 02:31:50 GMT 
Expires →Thu, 19 Nov 1981 08:52:00 GMT 
Keep-Alive →timeout=5, max=100 
Pragma →no-cache 
Server →Apache 
X-Powered-By →PHP/5.6.26 
+0

你是否會在郵遞員中獲得相同的標題?那麼我不確定。 –

+0

請看postman headers.On郵遞員它顯示json數據,即使它有302錯誤。任何想法? @suraj – Sampath

+0

我認爲這是重定向並給出最終響應的標題。沒有看到這樣的移動應用程序的東西...最糟糕的情況下,你可以嘗試使用inAppBrowser?它的一個奇怪的想法.. –

回答

2

響應302是一個重定向到一個不同的URL。有關答覆本身的更多解釋,請檢查this question以及this。 在瀏覽器的情況下,他們直接處理重定向。 爲了您的迴應,如果無法在服務器端進行更改,您可以在response.headers.location中獲得重定向位置。

return new Promise(resolve => { 
     this.http.get('https://mylink.com/admin/index.php?route=api/event') 
     .map(res => {console.log(res.headers.get('Location'));return res.json();}) 
     .subscribe(data => { 
      this.data = data; 
      resolve(this.data); 
     }); 
+0

它在這裏提供了這個錯誤'res.headers.location'.compile時間錯誤:'屬性'位置'不存在類型'Headers''.do你知道爲什麼嗎? – Sampath

+0

位置應該是一個屬性在標題..我編輯答案 –

+0

仍然是相同error.please請參閱更新部分上的最終代碼。 – Sampath