あり、多対多:ActiveAdminで多対多を実装する方法は?
class Employee < ActiveRecord::Base
has_many :employees_and_positions
has_many :employees_positions, through: :employees_and_positions
end
class EmployeesAndPosition < ActiveRecord::Base
belongs_to :employee
belongs_to :employees_position
end
class EmployeesPosition < ActiveRecord::Base
has_many :employees_and_positions
has_many :employees, through: :employees_and_positions
end
どのような選択形式で(check_boxes)ポジション従業員を追加実装するために?これは、フォーム内の位置のリストが表示されますが、テーブル(employees_and_positions)には何も保存しません
f.inputs 'Communications' do
f.input :employees_positions, as: :check_boxes
end
: 私はこのバリアントを書きました。 修正方法?