将请求重定向到不同的资源(Falcon)

时间:2016-09-22 12:45:43

标签: python-3.x falconframework

我正在使用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网址格式为localhost/{id}。如果Res1是其他id,我想致电Res2

2 个答案:

答案 0 :(得分:0)

Private Sub CommandButton21_Click()
CommandButton21.Caption = "Loading"
Application.Wait (Now + TimeValue("0:00:05"))
CommandButton21.Caption = "Original Text"
End Sub

您可以尝试这个或解释更多

答案 1 :(得分:0)

你最好把你的逻辑放在python函数中,并根据你的任何API中的if else条件调用该函数,这是一种可重用且松散耦合的方法。