发布网友 发布时间:2022-04-24 01:41
共1个回答
热心网友 时间:2023-10-19 09:13
需求 在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})
验证有效
热心网友 时间:2023-10-19 09:13
需求 在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})
验证有效