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.
想知道 Ramaze 是否有像 Sinatra 这样的钩子。有人知道吗?谢谢!
他们的文档告诉您确实如此。例如:
before(:index, :other) do puts 'Executed before specific actions only.' end after(:index, :other) do puts 'Executed after specific actions only.' end