У меня ниже ответ от API
[
{
"Cinema_strName": "Cll, Kollam",
"Cinema_strID": "CEWB",
"Cinema_strBannerImg": "",
"cinema_addr": "5th Kollam",
"cinema_loc": "<iframe src=\"https://www9550314\" width=\"600\" height=\"450\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>",
"cinema_mob": 0
},
{
"Cinema_strName": "Cs, Kollam",
"Cinema_strID": "KEWB",
"Cinema_strBannerImg": "",
"cinema_addr": "Carlangara, Kollam, Kerala - 691581",
"cinema_loc": "<iframe src=\"hsen!2sin49\" width=\"600\" height=\"450\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>",
"cinema_mob": 0
}
]
Я хочу получить cinema_loc от API для этого я делаю ниже код
this.common.createAPIService('api/cinemas/List?CityName='+city, '').subscribe((result: any) => {
if(result.length){
this.cinema = result;
this.loc = this.cinema.cinema_loc;
console.log(this.loc);
}else{
alert('Cinema not found');
}
})
Но это дает мне неопределенное значение.Если я напишу this.cinema[0].cinema_loc
.Я получу только первый ответ iframe.Пожалуйста, помогите.
Для @ nikhil
<div class="col-md-9">
<div class="map" *ngFor="let map of html">
<div [innerHTML]="map"></div>
</div>
</div>