0
我是angular2中的新成員,我想循環鍵並將user_id更改爲用戶名。這是user.component.ts的代碼。作爲迴應,我越來越像這樣:[{「1」:「Begginer,professional,」},{「2」:「Begginer」},{「4」:「專業,新鮮」}]我想展示它像:循環插入角度2中的散列鍵中的值
甲初學者,專業
乙Begineer
C專業,更新鮮
ABC是用戶名。
this.userCategories = response;
console.log(JSON.stringify(this.userCategories)); //[{"1":"Begginer ,professional ,"},{"2":"Begginer"},{"4":"Professional, freshers"}]
this.userCategories = this.userCategories.map(i => {
let user = [];
let usr = [];
const User_id = Object.keys(i)[0]; // here I am getting user_id
for(let j of User_id){
this.userService.userName(j).subscribe(
name => {
usr.push(name); // pushing name of users in an array.
return usr;
},
err => {
console.log('err:', err);
}
);
}
user[0] = usr;
console.log(user[0]); // here I am getting username in an array.
user[1] = i[User_id];
return user;
})
然後在視圖時,我使用的是這樣的:
<a >{{userCategories[0] | json}}</b>
<a >{{userCategories[1]}}</a>
我越來越:
[ "\"A \"" ] Begineers,professional
[ "\"B \"" ] Begineers
[ "\"C \"" ] Professional,fresher
任何人都可以請幫助我。提前致謝。
我已經編輯我的問題像你已經發布,但我沒有得到輸出。 –
* ng只適用於數組而非對象,,請參閱更新後的答案 –
感謝@Double H,現在我正在瀏覽器控制檯中獲取此內容。 錯誤類型錯誤:{{用戶.KEY}}無法讀取未定義 –