我在http://127.0.0.1:5000/上运行了client_app.py,在http://127.0.0.1:5001/上运行了server_app.py 他们每个人在程序中都有一个json对象。 server_app.py如何将字符串发送到client_app以更新其json对象? 谁能举个例子? 感谢
答案 0 :(得分:2)
您可以使用requests
向其他应用发送POST请求。
你应用中的某个地方:
import requests
def update_other(self, data):
r = requests.post("http://127.0.0.1:5000", data=data)
...
答案 1 :(得分:0)
From Server to Client you can use Context Processors或Martin Samson建议的方法