我的网址json是@_____,但我不能称之为。 如何获得它?谢谢你的回答。
" RESULT":{
"FACET":[{ "@NAME" : "creator", "@COUNT" : "20",
"FACET_VALUES":[
{
"@KEY":"Book Company1",
"@VALUE":"13"},
{
"@KEY":"Book Company1์",
"@VALUE":"10"}
]
.
this.http.get("my_url")
.subscribe(data =>{
this.items=data.json().RESULT.FACET.FACET_VALUES;
},error=>{
console.log(error);
} );
.
<ion-list>
<ion-item *ngFor="let item of items" (click)="itemClicked($event,item)">
<h2>{{item.@KEY}}</h2> /////this error
<p>{{item.@VALUE}}</p> /////this error
<button ion-button clear item-right (click)="buttonClick($event)">View</button>
</ion-item>
</ion-list>
通常在 JavaScript 中,你会使用 item["@KEY"]
.但我不知道这是否适用于这个框架的模板语言。