In my component I am getting the response from REST but unable to populate the same in dropdown.
Component:
jobTitleList() {
this.jobList = this.getJobList().then((result) => {
this.jobList = result;
console.log('result is : ', this.jobList );
});
}
On console I am getting : result is : ["Software Developer","Support Engineer"]
HTML select/dropdown:
<select (focus)="jobTitleList()">
<option *ngFor="let jobTitle of jobList" value="">{{jobTitle}}</option>
</select>
I am getting empty select box on my screen. Please help. I followed many posts but did not help. Thanks in advance.