1

想知道 Ramaze 是否有像 Sinatra 这样的钩子。有人知道吗?谢谢!

4

1 回答 1

2

他们的文档告诉您确实如此。例如:

before(:index, :other) do
    puts 'Executed before specific actions only.'
end

after(:index, :other) do
    puts 'Executed after specific actions only.'
end
于 2013-04-23T20:36:31.093 回答