gpt4 book ai didi

javascript - Ionic2 中具有自定义索引的数组

转载 作者:行者123 更新时间:2023-11-29 21:09:37 25 4
gpt4 key购买 nike

我在 Ionic2 的变量中创建一个数组:

allMonths = {'01':'January','02':'February','03':'March','04':'April','05':'May','06':'June','07':'July','08':'August','09':'September','10':'October','11':'November','12':'December'};

我想获取所有月份(指定键)我在 html 中将它们显示为:

<ion-item>
<ion-select [(ngModel)]="allMonths">
<ion-option value="{{months.key}}" *ngFor = "let months of allMonths | keys">{{months.value}}</ion-option>
</ion-select>
</ion-item>

** 虽然我得到了回应,但问题是我得到的是:

1 日:10 月2日:11月第 3 天:12 月4日:一月...12日:9月

***** 但我希望它们在弹出窗口中从 1 月到 12 月连续出现。

任何人都可以在我错的地方提出建议。

提前致谢。

最佳答案

    After a long google I solved it as:

allMonths:Array<Object> = [
{id: '01', text: 'January'},
{id: '02', text: 'February'},
{id: '03', text: 'March'},
{id: '04', text: 'April'},
{id: '05', text: 'May'},
{id: '06', text: 'June'},
{id: '07', text: 'July'},
{id: '08', text: 'August'},
{id: '09', text: 'September'},
{id: '10', text: 'October'},
{id: '11', text: 'November'},
{id: '12', text: 'December'},
];

In Html:

<ion-item>
<ion-select [(ngModel)]="allMonths">
<ion-option value="{{months.id}}" *ngFor = "let months of allMonths ">{{months.id}}</ion-option>
</ion-select>
</ion-item>

希望对大家有帮助。

关于javascript - Ionic2 中具有自定义索引的数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42367946/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com