I have a list of dropdown and i am creating DOM structure using Angule5 like
<div *ngFor="let dropdownof ListOfDropdown" class="md-form form-lg">
<select name="function">
<option *ngFor="let option of optionList" value={{option .id}} required>{{option .value}}</option>
</select>
</div>
in .ts file i have 3 backend services for list of option. and one services for no of dropdown
public getCountry(){//some logic}
public gettype(){//some logic}
public getlang(){//some logic}
public getDropdownList(){//some logic}
now the problem is its creating 3 dropdown but option is repeating, only getlang is showing in all list!!! please help
ofin*ngFor="let dropdownof of ListOfDropdown"