Skip to content

Instantly share code, notes, and snippets.

@zliang-min
Created March 23, 2011 06:15
Show Gist options
  • Save zliang-min/882696 to your computer and use it in GitHub Desktop.
Save zliang-min/882696 to your computer and use it in GitHub Desktop.
Things about sinatra.

Sinatra类的继承

(这里把sinatra中间件和sinatra应用统称为sinatra类)当B继承A时:

  • B在运行filter的阶段,会先运行自己的filters,然后运行A的filters

  • 同理,B在运行routes时,也会运行A的routes(前提是,B没有找到匹配的route)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment