angular2-http

    2熱度

    1回答

    是否有可能手動實例化Http服務而無需將其作爲構造函數參數進行放置? export class SimpleGridServer { private http: Http; constructor(public options: SimpleServerData) { http = new Http(.../* Argument here */); }

    21熱度

    1回答

    我正在嘗試使用withCredentials向我的服務發送一個cookie,但無法找到如何實現它。 文檔說:「如果服務器需要用戶憑據,我們將在請求標題中啓用它們」沒有任何示例。 我嘗試了幾種不同的方法,但它仍然不會發送我的cookie。 這是我的代碼到目前爲止。 private systemConnect(token) { let headers = new Headers();

    0熱度

    1回答

    im有點新的angular2,我希望你能幫助我我很肯定它必須是簡單的東西,但這是交易即時通訊服務,可以處理http調用,但它的需要應用一些過濾器中的數據,而不要求加載之後再次以新的參數基本上我想要讓angular2處理的那部分 更新** API服務器 服務 httpHandler(type,model){var token = this.LoginService.JwtDecoded(); var

    1熱度

    1回答

    我想覆蓋Http自定義類,說HttpClient做一些操作之前請求和響應後,但我不想記得導入該類而不是平臺http類。 我一直在嘗試通過'多'提供程序來做到這一點,但我不能完全點擊它。 這裏是我的替代類: import {Injectable} from '@angular/core'; import {Http, Headers} from '@angular/http'; @Inject

    0熱度

    1回答

    什麼是Angular2中實際使用的http綁定?任何工作代碼或闖入者?在文檔中沒有記錄,並說使用HTTP提供商。 https://angular.io/docs/ts/latest/api/http/index/HTTP_BINDINGS-let.html https://angular.io/docs/ts/latest/api/http/index/HTTP_PROVIDERS-let.htm

    0熱度

    1回答

    不知道這是否按預期工作,但我想將一個json blob轉換爲一個通用對象數組(對象是可延展的,可以根據我的URL而改變)。我應該使用JSON.parse(res.json()。data)嗎?謝謝。 return this.http.get(URL) .toPromise() .then(response => response.json().data as

    0熱度

    2回答

    我得到的含有一些用戶TS文件: 快速入門,鼓起/應用/模擬/ user.mock.ts: import {User} from "../user"; export const USERS:User[]=[ new User(....); ]; 一個貢獻莫過於 - 快速啓動,鼓起/應用程序/服務/用戶。 service.ts: import { Injectable } from

    -1熱度

    1回答

    我想模擬一個登錄組件,它執行一個http身份憑證,並返回一個包含令牌和其他信息的JSON對象。 得到一個「500內部服務器錯誤」的迴應,經進一步檢查我看到在響應主體更多信息... error:"collection.reduce is not a function" 這裏是我的種子數據文件 export class AppData { createDb() { let au

    1熱度

    1回答

    將此呼叫轉換爲'./customer.json'的Angular 2代碼,然後使用返回的url進行進一步調用。如果第二個失敗使用rxjs重試方法失敗,我該如何重試這兩個調用?目前它似乎只是重試第二個。 this.http.get('./customer.json') .map((res: Response) => { this.customer = res.json(); r

    1熱度

    2回答

    我跟着Angular2 tutorial但Http.delete總是拋出異常: 類型錯誤:this._body是空hero.service.ts的 原始代碼 public deleteHero(hero: Hero) { const headers = new Headers({ 'Content-Type': 'application/json' });