我正在使用 Python3.4 和 Falcon1.0 。我想将请求重定向到 falcon API 中的另一个资源。
例如,我有 2 个资源:
class Res1(object):
def on_get(self, req, resp):
print("I'm on resource 1")
resp.status = falcon.HTTP_200
class Res2(object):
def on_get(self, req, resp):
print("I'm on resource 2")
resp.status = falcon.HTTP_200
API URL 格式为localhost/{id}
. 我想打电话Res1
if id
is 1 else Res2
。