・ Ruby: 2.5.7 Schienen: 5.2.4 ・ Vagrant: 2.2.7 -VirtualBox: 6.1 ・ Betriebssystem: macOS Catalina
Folgendes wurde implementiert.
・ Schlanke Einführung ・ Einführung von Bootstrap 3 ・ Implementierung der Posting-Funktion ・ Implementierung der Kategoriefunktion
Terminal
$ rails g model BookCategory book_id:integer category_id:integer
Terminal
$ rails db:migrate
schema.rb
create_table "book_categories", force: :cascade do |t|
t.integer "book_id"
t.integer "category_id"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end
Terminal
$ rails g migration RemoveCategoryIdFromBooks category_id:integer
~_remove_category_id_from_books
class RemoveCategoryIdFromBooks < ActiveRecord::Migration[5.2]
def change
remove_column :books, :category_id, :integer
end
end
Terminal
$ rails db:migrate
book.rb
has_many :book_categories
has_many :categories, through: :book_categories
category.rb
has_many :book_categories
has_many :books, through: :book_categories
book_category.rb
#Nachtrag
belongs_to :book
belongs_to :category
Machen Sie category_id
mit dem starken Parameter books_controller.rb
konfigurierbar.
books_controller.rb
def book_params
params.require(:book).permit(:title, :body, { category_ids: [] })
end
** ① Formular bearbeiten **
slim:books/index.html.slim
/Vorher ändern
= f.label :category_id, 'Kategorie'
br
= f.collection_select :category_id, Category.all, :id, :name, { prompt: 'Bitte auswählen' }, class: 'form-control'
br
/Nach der veränderung
= label_tag 'Kategorie'
br
= collection_check_boxes(:book, :category_ids, Category.all, :id, :name) do |cb|
= cb.label { cb.check_box + ' ' + cb.text }
br
= collection_check_boxes(:book, :category_ids, Category.all, :id, :name) do |cb|
➡︎ Die Namen aller Kategorien werden als Kontrollkästchen angezeigt und der Wert auf id gesetzt.
** ② Tabelle bearbeiten **
slim:books/index.html.slim
/Vorher ändern
td
= category.name
/Nach der veränderung
td
- book.categories.each do |category|
= category.name
| /
Recommended Posts