angular-http

    0熱度

    1回答

    我有一個Web API,我想要返回一個文件和文件詳細信息。 HttpResponseMessage result = Request.CreateResponse(HttpStatusCode.OK); var file = new FileStream(filePath, FileMode.Open, FileAccess.Read); result.Content = new Stream

    0熱度

    3回答

    Angular很新穎。我檢查了類似的問題,但他們要麼深入細節,要麼只是不理解解決方案。 實際的錯誤: 「無法讀取屬性 'idPlanet' 的未定義在Object.eval [如updateRenderer(PlanetComponent.html:11)」 問題: planetDetail.idPlanet是未定義最可能? 可疑: getPlanetDetail() planet.compone

    0熱度

    2回答

    我希望大家都做得很好。我最近開始使用angular 4.4,我一直在試圖將數據發佈到我的api服務器,但不幸的是它不工作。我花了2天時間,但仍然沒有成功。並已從angular.io甚至已經嘗試過6-7條。 我試過Http和Httpclient模塊 但似乎沒有工作。 的問題是,每當我試圖將數據發佈到我的服務器,角使得HTTP OPTIONS類型的請求,而不是POST。 this.http.post(

    2熱度

    1回答

    我是新的角度,並試圖找出它是如何工作的。我試圖從API中爲我的表提取數據。 import { Component } from '@angular/core'; import { Http } from '@angular/http'; import 'rxjs/add/operator/map'; @Component({ selector: 'app-root', t

    0熱度

    2回答

    我有以下的代碼 getLoggingCsvRecords(recId: string) { const url = this.apiurl + 'loggingcsvrecordsforrecid'; return this.http.post<Array<string>>(url, {recId}) .map(data => data['results']

    0熱度

    2回答

    下拉服務調用http delete service,它從Firebase服務器中的數據獲取id。然後將該id設置爲http服務中的屬性idArr。那麼id用於刪除數據庫條目。但它不起作用。 我期待在數據庫中的{data.id [0]}字段被刪除,但它不是被刪除 沒有錯誤被拋出 //下拉服務 import { Injectable } from '@angular/core'; import {

    0熱度

    1回答

    我目前深化發展的角4個app.I使用web服務的REST類型正在從DB.So得到i的數據由被稱爲UsersListService前端服務,其具有返回到可觀察到的一個方法,該方法我在compnent.I訂閱想要的組件的屬性的用戶更改爲Web服務,但遺憾的是該組件的屬性總是被設置爲它返回的數據的默認value.So一旦頁面加載我被返回的數據web服務,但一旦我做搜索或paginetion用戶設置爲它的

    1熱度

    1回答

    我需要將此日期傳遞給api,它需要是一個字符串。我如何做到這一點,因爲我使用ng-bootstrap datepicker?當我做了date: this.date.toString()時,它返回[object] [Object]。我想這是一個字符串 <div class="input-group col-md-3"> <input class="form-control" placeh

    0熱度

    1回答

    我有一個包含material_projects或project_services的項目api。我很困惑我將如何顯示其中一個。如果我顯示material_projects,那麼我不能顯示project_services。 project_services在api中必須是空的。 getAllProjects() { this.subscription = this.projectsServi

    0熱度

    1回答

    我正在嘗試使用開放天氣地圖api製作Angular 2中的天氣應用程序。我的應用程序中安裝了HttpModule,位於app.module.ts中。我也在app.component.ts中導入了Http,我正在運行該程序。 例如,我想獲取休斯頓天氣的json數據。我的代碼如下: import { Component, OnInit } from '@angular/core'; import {