getChildWithDefault(name,
request)
|
|
Return a child with the given name for the given request. This is the
external interface used by the Resource publishing machinery. If
implementing IResource without subclassing Resource, it must be provided.
However, if subclassing Resource, getChild overridden instead.
- Parameters:
name (bytes ) - A single path component from a requested URL. For example, a
request for http://example.com/foo/bar will result in
calls to this method with b"foo" and
b"bar" as values for this argument.
request (twisted.web.server.Request) - A representation of all of the information about the request that
is being made for this child.
|