You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
currently we could only apply global middlewares, in complicated applications, we might need to apply middlewares for different business, assume there are routes (/foo and '/bar') and middlewares (foo and bar), the usage could be:
app.Use('/foo', foo)
app.Use('/bar', bar)
The text was updated successfully, but these errors were encountered:
currently we could only apply global middlewares, in complicated applications, we might need to apply middlewares for different business, assume there are routes (
/foo
and '/bar') and middlewares (foo
andbar
), the usage could be:The text was updated successfully, but these errors were encountered: