flask 调用内部接口API

需求 在func1里调用func2函数,函数如下,func1 func2可能在同一个文件,也可能在不同文件,也可能位于不同的flask blueprint模块中:

@route("/url1")
def func1()
  #To do...
  
@route("/url2")
def func2():
  #To do... 

想在func2里面调用func1,使用python requests库,在func2里面发起post请求

其它做法博客链接:
https://blog.csdn.net/u013247765/article/details/81166027

我的做法

import requests
@route("/url2")
def func2():
  requests.post("http://server_ip:server_port/url1", json={key: value})

验证有效

你可能感兴趣的:(flask,后端)