新增一個 guests_controller,在terminal輸入 rails g controller guests,便會在app/controller底下新增一個guests_controller的檔案。
注意:可以在新增controller的同時,新增這個controller的actions,rails除了會在你的 controller檔案裡新增這些 actions還會在 app/view裡面幫你產生相對應的html.erb檔,例如: 可以輸入 rails g controller guests index new show edit delete