我在我的rails項目中使用了設計和簡單形式。我想在表單上顯示所有當前用戶,然後能夠輸入每個相應員工的銷售信息。我一直在遍歷員工表並顯示他們,我可以創建一個表單並輸入銷售信息,並將其與用戶相關,但出於某種原因,我似乎無法將這兩者結合起來。在我看來,我也很綠。 Schema.rb ActiveRecord::Schema.define(version: 20160812021027) do
有另一種方式使用的,而不是這一個,我使用的,因爲它看起來醜陋 this is how the form looks like 這是代碼 紙夾來存儲多個圖像 應用程序/視圖/職位/ _form.html.erb <%= simple_form_for @post, html: { class: 'form-horizontal', multipart: true } do |f| %>
<
我很難弄清楚如何讓我的選擇字段在Rails 4.2應用程序中使用Simple_form的enum屬性工作。 這裏是我的模型: class Employee < ActiveRecord::Base
# returns the full name of the employee. This code is found in a concern called name.rb
inc