路线上的烧瓶发布请求

时间:2018-11-29 18:38:13

标签: python-3.x flask request

是否可以从烧瓶中的一条路线向另一条路线发出发布请求?用户发送数据,我将查找数据,然后将该数据提交到另一条路线。获取Internal Server Error日志仅包含failed (111: Connection refused) while connecting to upstream。我知道如果删除看到found you的请求行,则路由可行。

@app.route('/route/<string:uname>', endpoint = 'uname')
def uname():
    d={}
    d['fname']='data'
    d['lname']='data'

    requests.post(url='https:site.com/test/', data = data)
return 'found you'
@app.route('test', endpoint = 'test', methods = ['POST','GET'])   
def test():
return "submitted to test"

*****将verify=False添加到了request.post行中,它只是挂起并绑定了服务。我必须重新启动该服务,网站才能开始工作。

0 个答案:

没有答案