Essentail Rails Design Pattern

Write Good Rails Code

類似形式的 Controller 出現第二次請注意

場景

#TODO

使用 NameSpace 整理 controller

BAD SMELL

app/controller/user_favorites_controller.rb

1
2
3
class UserFavoritesController < ApplicationController

class UserProfileController < ApplicationController

GOOD SMELL

app/controller/user/favorites_controller.rb

1
2
3
class User::FavoritesController < ApplicationController

class User::ProfileController < ApplicationController

Comments