我必須在下拉菜單中顯示員工姓名以及員工姓名。以下代碼顯示錯誤,如「無法將字符串轉換爲整數」有沒有解決此問題的方法?兩個數據在下拉菜單
在查看
<div class="input integer optional"><label class="integer optional control-label" for="assign_staff_subject_id">Subject</label><%= f.select :teacher_id, Teacher.all.map{|i| [i.employee_no,i.id] [i.first_name, i.id]} , :prompt => "--Select a Teacher--" %></div><br/>
在哪種方式,我可以做到這一點?謝謝大家提前
嘗試employee_no和id out this' <%= f.select:teacher_id,Teacher.all.map {| i | [i.id,「#{i.first_name} - #{i.employee_no}」]},:prompt =>「 - 選擇一位教師 - 」%>' –