Ramaze有一个像“之前/之后”挂钩的Sinatra吗?

时间:2013-04-23 20:07:09

标签: ruby ramaze

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

1 个答案:

答案 0 :(得分:2)

他们的documentation告诉你它确实如此。例如:

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

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