Improve documentation for serving static content #331
Comments
The concept is that something that should be caught and acted upon. a Lines 18 to 53 in a9c56c7 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ref: #214
After reviewing the source for the
sendmethod, it seems that the function is not designed to be used in any place except the tail end of the middleware stack, since it throws (anHttpErrorwith status404) when there is no match.This seems rather opinionated (which is fine), but it was not very intuitive for me, and I think it needs to be documented.
It would be nice to provide a configuration option for
send(andcontext.send) so that this behavior can be changed — e.g. to allow invokingnext(instead of throwing) when no match is found, so that it can used in other positions in the middleware stack.The text was updated successfully, but these errors were encountered: