Route
利用routes的resources方法建立RESTful api(CRUD)的路徑(8條路徑,controller的7種方法)
bin/rails routes → 查詢全部routes的路徑
bin/rails routes -c 路徑
只開
resources :books, only: [:index, :new]
除了…不開,其他
resources :books, except: [:index, :new]
resources & 後面為複數命名為Rails慣性
單複數resources差異為是否會開:id路徑,也無index