处理两个应用程序路由到同一功能的POST方法

时间:2018-06-01 14:33:10

标签: python flask routes

我怎样才能得到这样的东西?

@app.route('/client_progress')
@app.route('/client_update', methods=['POST', 'GET'])
def func_1():
    if (//app.route == client_progress)
        if request.method == 'POST':
             return 'hello world'

    elif (//app.route == client_update)
        if request.method == 'POST':
             return 'Good World'

我希望有两个应用程序路由到同一个功能,并能够回应适当的路由。

这可能吗?如果是,请分享这个例子。

0 个答案:

没有答案