0
我的軌道應用程序中有兩個相關表:ephemerides
和ephemeris_shared_attributes
。軌道形式的相關表屬性
第一個具有ephemedis_shared_attribute_id
列和秒具有列作爲year
,yday
等
的ephemeris_shared_attributes
被自動創建當我保存的星曆錶,但有在它沒有值。
如何添加表單字段以輸入例如年份並將其保存在ephemeris_shared_attributes table
中?
這是我目前的形式:
= form_for @ephemeris do |f|
...
.field
= f.label :content
= f.text_area :content
.field
= f.label :locale
= f.select(:locale,['mg','fr'])
.actions
= f.submit 'Save'
非常感謝,這真的很有幫助。 –