我希望将以下JSON绑定到ion-select中。谁能帮我把这个做完。JSON看起来正常吗?
{
"1": "Lynko Pvt. Ltd. ",
"4": "Letsclick Pvt. Ltd. ",
"5": "Wirehead ",
"6": "Codeyiizen Software & Services Pvt. Ltd. ",
"7": "Mariao Barando ",
"8": "Jorge Santacruz ",
"9": "Matt Core ",
"10": "Manny Singh ",
"11": "Manoj Mishra ",
"12": "Digi Interacts ",
"13": "IHF Ltd. ",
"14": "Hadiur Rahman ",
"15": "The Football Link ",
"16": "BSPL ",
"17": "Votestalk ",
"18": "Codeyiizen "
}发布于 2020-04-24 13:14:27
您可以绑定离子选择选项,因为follows.Your JSON看起来不正确。我会给出一个参考代码
<ion-item>
<ion-label data-target="#filter3">Travel Agencies</ion-label>
<ion-select id="filter3" multiple="true">
<ion-option id="filter3" *ngFor="let travels of filter_type.travels " value="{{travels.id}}">
{{travels.name}}</ion-option>
</ion-select>
</ion-item>https://stackoverflow.com/questions/61386893
复制相似问题