angular

    0熱度

    1回答

    我正在通過Get請求查找API中的數據,我需要我的OnInit中的數據用於撰寫其他數據。問題在於該方法正在被調用,但它是一個異步方法(無需等待),它在任何地方通過,但是當獲得返回時,主方法的執行已經完成,沒有結果。我嘗試了異步方法的實現,但沒有解決。 服務: getObjects(): MyClass[] { let objects = new Array<MyClass>(); this.

    1熱度

    1回答

    我正在使用Jasmine和Karma進行我的前端單元測試。當運行我的測試中,我得到了以下錯誤: 終端錯誤 Chrome 59.0.3071 (Mac OS X 10.11.6) ERROR Uncaught Response with status: 404 Not Found for URL: http://localhost:9876/api/volunteer at http://local

    3熱度

    1回答

    我是angualr 2的新手。我正在爲練習做一個小應用。我有一個登錄用戶身份驗證服務。這裏是登錄功能。 login(email:string, password:string){ var loginrul="https://filing.herokuapp.com/api/v1/auth/login/"; return this.http.post(loginrul,JS

    0熱度

    2回答

    如何將ts-topojson導入到Angular2項目中,以便獲得Typescript類型?我用npm安裝了這個模塊,試圖用一個簡單的import語句來包含,但linter說它找不到'topojson'。 import { Topojson } from 'topojson'; 這是我的第一個Angular2項目,所以我很新,所以我可能會失去一個關鍵的一步。

    1熱度

    2回答

    Im學習Angular,我正在創建一個加密貨幣交換應用。我創建了一個服務和一個接口來從API獲取數據。現在我可以將它綁定到DOM,但我也想在我的component.ts中使用這些數據,以便我可以編寫例如: Bid2 = Bid * 2; ,然後綁定變量,以這樣的DOM:{{標段2}} 感謝您的幫助。這裏是我的代碼: Component.ts import { Component, OnInit }

    0熱度

    1回答

    我使用嵌套選項卡時出現問題。如果我在md-tab上定義label屬性,一切看起來都不錯,但是當我放入<template md-tab-label>Nested Tab 1</template>時,它會使父項md-tab-group的第一個選項卡爲「嵌套選項卡1」而不是「父級選項卡1」。 我該如何解決這個尷尬的行爲?或者這是這樣的嗎? HTML: <md-tab-group #parentTabs>

    2熱度

    1回答

    我需要能夠模擬角的ng-template單元測試。當我嘗試運行它,我得到這個錯誤: Components on an embedded template: NgTemplateStub (" <grid-column> [ERROR ->]<ng-template gridCellTemplate dataItem> <custom-column-template [dat

    0熱度

    2回答

    我對Angular非常陌生。我跑了這個讓我的項目開始: git clone https://github.com/angular/quickstart appName 我更新到Angular 4,一切都應該是好的。下面是從運行ng -v輸出: @angular/cli: 1.1.3 node: 6.11.0 os: darwin x64 @angular/common: 4.0.3 @an

    1熱度

    2回答

    我試圖構建一個d3 v4插件,遵循https://bost.ocks.org/mike/d3-plugin/ - 最終目標是能夠安裝插件並將其用於Angular 2/4組件。 我的回購是在這裏: https://github.com/denisemauldin/d3-timeline 例子: https://denisemauldin.github.io/d3-timeline/examples/

    0熱度

    2回答

    我們有Spring MVC後端,它可以創建,更新,刪除請求作爲POST請求。有可能用Angular發送這樣的請求嗎? 我甚至沒有在http上找到創建和更新請求