第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何從Angular中的http / async調(diào)用為接口屬性賦值?

如何從Angular中的http / async調(diào)用為接口屬性賦值?

GCT1015 2022-10-13 16:56:37
我有一個(gè)返回 JSON 對(duì)象的服務(wù),我想將此數(shù)據(jù)分配給接口屬性。這是下面的代碼,這里的 component.ts 代碼已被剝離,只包含相關(guān)部分。服務(wù).ts 文件import { Injectable } from '@angular/core';import { HttpClient } from '@angular/common/http';@Injectable({  providedIn: 'root'})export class ApiService {  constructor(private httpClient: HttpClient) { }  public getFanSpeed(){    return this.httpClient.get('http://localhost:4000/auth/get-fan-speed');  }}組件.ts 文件import { Component, OnInit } from '@angular/core';import { ApiService } from '../../api.service';interface CardSettings {  content: string;}@Component({...})export class DashboardComponent implements OnInit {  fanSpeed: string;  ngOnInit() {    this.apiService.getFanSpeed().subscribe((response)=>{      this.fanSpeed = response['fanSpeedVar'];    });  }  fanSpeedCard: CardSettings = {    content: this.fanSpeed  };  constructor(private apiService: ApiService) {}}我在 ngOnInit() 函數(shù)中放置了一個(gè) console.log,我可以看到正確的值,但由于某種原因,它沒有正確分配給接口屬性,因此在 UI 中只是空的。任何指導(dǎo)將不勝感激,謝謝。
查看完整描述

2 回答

?
繁華開滿天機(jī)

TA貢獻(xiàn)1816條經(jīng)驗(yàn) 獲得超4個(gè)贊

在您的代碼中,fanSpeedCard 是一個(gè)屬性,它在您的類(DashboardComponent)構(gòu)造時(shí)分配了對(duì)象的值(使用 CardSettings 接口) :


fanSpeedCard: CardSettings = {

    content: this.fanSpeed

};

由于 fanSpeed 最初沒有定義(僅作為字符串類型)并且由于您沒有在 API 響應(yīng)中更新 CardSettings 對(duì)象 - 您的 UI 不會(huì)更改。


如評(píng)論中所述,您需要確保更新訂閱塊內(nèi)的 CardSettings 內(nèi)容屬性的值(不僅僅是 fanSpeed):


gOnInit() {

    this.apiService.getFanSpeed().subscribe((response)=>{

      this.fanSpeed = response['fanSpeedVar'];

      this.fanSpeedCard.content = this.fanSpeed;

    });

}


查看完整回答
反對(duì) 回復(fù) 2022-10-13
?
拉丁的傳說

TA貢獻(xiàn)1789條經(jīng)驗(yàn) 獲得超8個(gè)贊

您沒有正確更新ngOnInit()fanSpeedCard中的content屬性值。在ngOnInit()中,您重新分配了this.fanSpeed值。在這里,您應(yīng)該將服務(wù)響應(yīng)值分配給'屬性。fanSpeedCardcontent


以下解決方案將解決您的問題。


組件.ts 文件


import { Component, OnInit } from '@angular/core';

import { ApiService } from '../../api.service';


interface CardSettings {

  content: string;

}


@Component({...})

export class DashboardComponent implements OnInit {

  fanSpeed: string;


  ngOnInit() {

    this.apiService.getFanSpeed().subscribe((response)=>{

      this.fanSpeed = response['fanSpeedVar']

      this.fanSpeedCard.content = this.fanSpeed;

    });

  }


  fanSpeedCard: CardSettings = {

    content: this.fanSpeed

  };


  constructor(private apiService: ApiService) {}

}


查看完整回答
反對(duì) 回復(fù) 2022-10-13
  • 2 回答
  • 0 關(guān)注
  • 118 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)