Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Padrinoがどのようにマッピングを実行するのか興味があります。
get :index do
に:
get '/' do
ソースでそれを見つけるのに問題があります。
それは単にメソッドをオーバーライドしますget、すなわち:
get
alias old_get get def get(path) if path == :index old_get '/' else old_get path end end