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 に答える