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

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

從 json 文件填充國(guó)家到 angular2-multiselect

從 json 文件填充國(guó)家到 angular2-multiselect

aluckdog 2022-12-09 16:48:17
我想嘗試從 json 文件 url 加載國(guó)家:https : //raw.githubusercontent.com/sagarshirbhate/Country-State-City-Database/master/Contries.json 到 angular2-multiselect。下面是我的代碼getCountries(){this.country.allCountries().subscribe(    data2 => {      this.countryInfo = data2.Countries.CountryName;      console.log('Data:', this.countryInfo);    },    err => console.log(err),    () => console.log('complete') )}所以 getcountry 函數(shù)從我用這里的 url 創(chuàng)建的服務(wù)獲取數(shù)據(jù)就是服務(wù)  export class CountriesService {  url: string = "https://raw.githubusercontent.com/sagarshirbhate/Country-State-City-   Database/master/Contries.json";  constructor(private http: HttpClient) { } allCountries(): Observable<any>{  return this.http.get(this.url); } }此顯示數(shù)據(jù):在控制臺(tái)日志中未定義。請(qǐng)幫我解決
查看完整描述

1 回答

?
九州編程

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

使用以下代碼獲取CountryName。


getCountries(){

 this.countryInfo = [];

this.country.allCountries().

subscribe(

    data2 => {

     

        data2.Countries.forEach(element => {

          this.countryInfo.push(element.CountryName);

        });

      console.log('Data:', this.countryInfo);

    },

    err => console.log(err),

    () => console.log('complete')

 )

}


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

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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