flask接口中调用接口?

发布网友 发布时间: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})
验证有效

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com