当我使用 <ActionBar>
<ActionItem ios.systemIcon="12" android.systemIcon="ic_menu_search" tap="showSearch" />
<ActionItem android.systemIcon="ic_menu_moreoverflow" tap="logout" text="Logout" android.position="popup" />
<ActionBar.titleView>
<StackLayout orientation="horizontal">
<Label text="{{ name }}" />
<Image src="res://app_icon" />
</StackLayout>
</ActionBar.titleView>
或date_field
时,用户仍然可以从1月或2月选择日期(start_year是我唯一可以指定的内容)。
我显然希望用户能够选择一个不早于今天的日期。是否可以在Rails中执行此操作?
答案 0 :(得分:0)
使用简单的rails select
形成帮助器,如下所示。
<%= f.select :month, Date.today.month..12%>
<%= f.select :year, Date.today.year..x.years.from_now.year %>