我正在使用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
。
答案 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条件调用该函数,这是一种可重用且松散耦合的方法。