网站正在使用节点服务器运行。我想创建一个python flask rest api,以连接到该网站的弹出窗口。我的python flask运行在8085端口,节点服务器运行在8082端口。
在python flask app.py中
@ app.route('/') def hello_world(): 返回render_template('popupchat.html')
@ app.route('/ chat',methods = [“ POST”])def chat():
此popupchat.html指向网站pupupchat窗口。并且有一个具有$ .post(“ / chat”的bind.js脚本,如果我要将在节点服务器中运行的此弹出式聊天窗口连接到python flask服务器,我将如何连接。
感谢您的建议
答案 0 :(得分:0)
如果您只是调试,请尝试调整聊天窗口侧面的端口。您可以通过更改要尝试到达的URL来告诉聊天窗口到达某个端口。例:
http://your_ip:your_port/your_route
或您的http://your_ip:8085/your_route
如果您已经部署完毕,请与管理员联系,因为这可能取决于您的服务器。