I am trying to get data from the server and show in dropdown .but I am getting an error in while fetching data from the server.
here is my code
https://stackblitz.com/edit/angular-xsydti
ngOnInit(){
console.log('init')
this.dropdownService.getBankData().subscribe((res)=>{
console.log(res);
})
}
service code
getBankData(){
return this.http.get<DropDownModel[]>(`{this.DOMAIN_URL}`)
}