我想在我的rails格式中只輸入年份字段。我試過select_year
,但它不適合我。 select_date
也給我問題,因爲我的表單模型是關聯的。有沒有其他的想法。Rails日期/年份字段
0
A
回答
1
參考: - select_year
# Generates a select field for years that defaults to the current year that
# is named 'birth' rather than 'year'
<%= f.select_year(Date.today, :field_name => 'birth') %>
,但如果你沒有任何列就用
<%= select_year(Date.today) %>
參考this和嘗試像
<%= select_year Date.today, :start_year => Time.now.year, :end_year => Time.now.year - 95, :field_name => :grad_year, :prefix => :profile %>
+0
未定義的方法'select_year'爲#
+0
只是使用'<%= select_year(Date.today,:field_name =>'birth')%>'然後 – Salil
+0
這隻適用於窗體,但它提交數據時給我提問 –
相關問題
- 1. Symfony2日期字段年份
- 2. 選擇年份以及從日期時間字段和插入日期字段
- 3. 在Excel中,按年份,月份和日期過濾DateTime字段
- 4. iPhone:只有月份和年份字段的日期選擇器
- 5. 僅創建月份和年份的日期字段 - Drupal
- 6. 根據月份和年份獲取日期字段
- 7. SQL從年份和數字字段創建日期時間
- 8. 大於指定日期(日期,月份,年份)的日期
- 9. Primefaces日曆彈出與年份字段
- 10. linq選擇不同的年份sql日期字段
- 11. 如何限制年份字段的輸入html日期?
- 12. NSPredicate只在日期字段的「年份」部分進行過濾
- 13. Django:僅*年份值過濾日期時間字段?
- 14. SQL如何按財政季度和年份與日期字段
- 15. 從MSSQL的日期字段中選擇不同的年份
- 16. 如何比較Linq中日期字段的年份?
- 17. 從日期計算年份
- 18. JavaScript的日期和年份
- 19. 按日期和年份CountIF
- 20. PHP的日期和年份
- 21. 如何在xts中將數字年份月份轉換爲年份 - 月份 - 日期日期格式?
- 22. 默認日期年份爲1970年,在
- 23. 字符串日期到SQL日期添加年份
- 24. 更換00與20年的日期字段中的Postgres/Rails的
- 25. 月份和年份的日期轉換
- 26. 添加年份,月份和日期C
- 27. 日期,月份和年份下拉框
- 28. 計算月份和年份的日期
- 29. LINQ:在日期時間字段內按月份和年份分組
- 30. 如何顯示只有月份和年份字段的Android日期選取器?
你遇到什麼問題與'select_year'和'select_date'? – Salil
你也想一年下拉或輸入字段? – Salil
f.select_year給了錯誤 –